Changeset 7785:84ea4d7c8cf7


Ignore:
Timestamp:
12/15/07 17:13:10 (5 years ago)
Author:
mabshoff@…
Branch:
default
Tags:
2.9.rc2
Message:

Make Mathematica doctests optional

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/calculus/calculus.py

    r7784 r7785  
    61636163        EXAMPLES: 
    61646164            sage: f = function('Gamma', var('z')) 
    6165             sage: mathematica(f) 
     6165            sage: mathematica(f) # optional 
    61666166            Gamma[z] 
    61676167            sage: f = function('Gamma', var('w'), var('z')); f 
     
    61696169            sage: f._mathematica_init_() 
    61706170            'Gamma[w, z]' 
    6171             sage: mathematica(f(sqrt(2), z+1)) 
     6171            sage: mathematica(f(sqrt(2), z+1)) # optional 
    61726172            Gamma[Sqrt[2], 1 + z] 
    61736173        """ 
Note: See TracChangeset for help on using the changeset viewer.