Changeset 6133:668f3c81dd88
- Timestamp:
- 09/05/07 15:17:57 (6 years ago)
- Branch:
- default
- Children:
- 6134:3f4ae1a238f6, 6160:6fb3b03638f0
- File:
-
- 1 edited
-
sage/calculus/calculus.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sage/calculus/calculus.py
r6129 r6133 4915 4915 maxima_var = re.compile("\%[a-z|A-Z|0-9|_]*") # e.g., ?%jacobi_cd 4916 4916 4917 sci_not = re.compile("(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]\d+)") 4918 4917 4919 def symbolic_expression_from_maxima_string(x, equals_sub=False, maxima=maxima): 4918 4920 syms = dict(_syms) … … 4949 4951 #replace all instances of scientific notation 4950 4952 #with regular notation 4951 sci_not = re.compile("(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]\d+)")4952 4953 search = sci_not.search(s) 4953 4954 while not search is None:
Note: See TracChangeset
for help on using the changeset viewer.
