Not working.
Tried it with
sage-2.9.1-osx10.4-intel-i386-Darwin
No luck.
========================================================
----------------------------------------------------------------------
| SAGE Version 2.9.1, Release Date: 2007-12-24 |
| Type notebook() for the GUI, and license() for information. |
----------------------------------------------------------------------
sage: maple('2+3')
---------------------------------------------------------------------------
<type 'exceptions.IndexError'> Traceback (most recent call
last)
/Users/edgar/<ipython console> in <module>()
/Applications/SAGE/local/lib/python2.5/site-packages/IPython/
Prompts.py in __call__(self, arg)
521
522 # and now call a possibly user-defined print
mechanism
--> 523 manipulated_val = self.display(arg)
524
525 # user display hooks can change the variable to be
stored in
/Applications/SAGE/local/lib/python2.5/site-packages/IPython/
Prompts.py in _display(self, arg)
545 """
546
--> 547 return self.shell.hooks.result_display(arg)
548
549 # Assign the default display method:
/Applications/SAGE/local/lib/python2.5/site-packages/IPython/hooks.py
in __call__(self, *args, **kw)
132 #print "prio",prio,"cmd",cmd #dbg
133 try:
--> 134 ret = cmd(*args, **kw)
135 return ret
136 except ipapi.TryNext, exc:
/Applications/SAGE/local/lib/python2.5/site-packages/IPython/hooks.py
in result_display(self, arg)
160
161 if self.rc.pprint:
--> 162 out = pformat(arg)
163 if '\n' in out:
164 # So that multi-line strings line up with the left
column of
/Applications/SAGE/local/lib/python/pprint.py in pformat(self, object)
109 def pformat(self, object):
110 sio = _StringIO()
--> 111 self._format(object, sio, 0, 0, {}, 0)
112 return sio.getvalue()
113
/Applications/SAGE/local/lib/python/pprint.py in _format(self, object,
stream, indent, allowance, context, level)
127 self._readable = False
128 return
--> 129 rep = self._repr(object, context, level - 1)
130 typ = _type(object)
131 sepLines = _len(rep) > (self._width - 1 - indent -
allowance)
/Applications/SAGE/local/lib/python/pprint.py in _repr(self, object,
context, level)
193 def _repr(self, object, context, level):
194 repr, readable, recursive = self.format(object,
context.copy(),
--> 195 self._depth,
level)
196 if not readable:
197 self._readable = False
/Applications/SAGE/local/lib/python/pprint.py in format(self, object,
context, maxlevels, level)
205 and whether the object represents a recursive
construct.
206 """
--> 207 return _safe_repr(object, context, maxlevels, level)
208
209
/Applications/SAGE/local/lib/python/pprint.py in _safe_repr(object,
context, maxlevels, level)
290 return format % _commajoin(components), readable,
recursive
291
--> 292 rep = repr(object)
293 return rep, (rep and not rep.startswith('<')), False
294
/Applications/SAGE/local/lib/python2.5/site-packages/sage/interfaces/
maple.py in __repr__(self)
538 def __repr__(self):
539 self._check_valid()
--> 540 return self.parent().get(self._name)
541
542 def _latex_(self):
/Applications/SAGE/local/lib/python2.5/site-packages/sage/interfaces/
maple.py in get(self, var)
421 """
422 s = self.eval('%s'%var)
--> 423 if s[0] == '{':
424 return s
425 i = s.find('=')
<type 'exceptions.IndexError'>: string index out of range
sage:
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://sage.scipy.org/sage/ and http://modular.math.washington.edu/sage/
-~----------~----~----~----~------~----~------~--~---