On Apr 9, 2009, at 11:31 AM, mabshoff wrote:
> On Apr 9, 11:01 am, Ondrej Certik wrote:
>> On Thu, Apr 9, 2009 at 10:33 AM, Arnaud Bergeron
>> wrote:
>
>
>
>>> Or simply, to keep the existing simplicity, change %myhandler to
>>> call
>>> sage_myhandler and rename the existing ones. There
On Apr 9, 11:01 am, Ondrej Certik wrote:
> On Thu, Apr 9, 2009 at 10:33 AM, Arnaud Bergeron wrote:
> > Or simply, to keep the existing simplicity, change %myhandler to call
> > sage_myhandler and rename the existing ones. There is very little
> > probability of other projects using sage_ a
On Thu, Apr 9, 2009 at 10:33 AM, Arnaud Bergeron wrote:
>
> 2009/4/7 Brian Granger :
>>
>>> That seems awfully complicated. How about (untested):
>>>
>>> sage_python = python
>>> from sympy import *
>>> python = sage_python
>>>
>>> or (even shorter, and still untested):
>>>
>>> from sympy import
2009/4/7 Brian Granger :
>
>> That seems awfully complicated. How about (untested):
>>
>> sage_python = python
>> from sympy import *
>> python = sage_python
>>
>> or (even shorter, and still untested):
>>
>> from sympy import *
>> restore('python')
>
> Sure these may work, but in my mind they ar
> That seems awfully complicated. How about (untested):
>
> sage_python = python
> from sympy import *
> python = sage_python
>
> or (even shorter, and still untested):
>
> from sympy import *
> restore('python')
Sure these may work, but in my mind they are temporary hacks.
> The %whatever synt
On Tue, Apr 7, 2009 at 1:26 PM, Carl Witty wrote:
>
> On Tue, Apr 7, 2009 at 12:16 PM, Brian Granger
> wrote:
>>
>> Ahh, that makes sense. It is the sympy.python thing that causes the
>> problem. This hack seems to work fix the issue in the notebook:
>>
>> import sympy
>> sympy.sage_python =
On Tue, Apr 7, 2009 at 12:16 PM, Brian Granger wrote:
>
> Ahh, that makes sense. It is the sympy.python thing that causes the
> problem. This hack seems to work fix the issue in the notebook:
>
> import sympy
> sympy.sage_python = sympy.python
> del sympy.python
> from sympy import *
>
> But an
On Tue, Apr 7, 2009 at 12:16 PM, Brian Granger wrote:
>
> Ahh, that makes sense. It is the sympy.python thing that causes the
> problem. This hack seems to work fix the issue in the notebook:
>
> import sympy
> sympy.sage_python = sympy.python
> del sympy.python
> from sympy import *
>
> But an
Ahh, that makes sense. It is the sympy.python thing that causes the
problem. This hack seems to work fix the issue in the notebook:
import sympy
sympy.sage_python = sympy.python
del sympy.python
from sympy import *
But any code in sympy that uses sympy.python will now fail. Really
this is a b
On Tue, Apr 7, 2009 at 11:01 AM, Brian Granger wrote:
>
> Hi,
>
> I am using the sage 3.2.3 notebook. I am using it in python mode and
> am having trouble with sympy:
>
> from sympy import *
> x = var('x')
>
> Traceback (most recent call last):
> File "", line 1, in
> File "/Users/bgranger/.s
10 matches
Mail list logo