Hi,
Le mardi 2 avril 2019 21:40:14 UTC+2, Bea Galiana a écrit :
>
> Hi,
>
> so I was wondering, is it possible to push to trac without having a trac
> account, only logged with a GitHub account?
>
>
I think yes, see
http://doc.sagemath.org/html/en/developer/trac.html
The branch name (created auto
On Tuesday, April 2, 2019 at 6:03:23 PM UTC-4, Dima Pasechnik wrote:
>
> On Tue, Apr 2, 2019 at 10:47 PM wrote:
> >
> > Hello, Sage community.
> > With the upcoming migration of Sage from Python2 to Python3, I was
> wondering if the "print" statement will be changed to the new "print"
> fun
On Wednesday, April 3, 2019 at 10:11:19 AM UTC-7, kcrisman wrote:
>
>
>
> On Tuesday, April 2, 2019 at 6:03:23 PM UTC-4, Dima Pasechnik wrote:
>>
>> On Tue, Apr 2, 2019 at 10:47 PM >
>> wrote:
>> >
>> > Hello, Sage community.
>> > With the upcoming migration of Sage from Python2 to Python3, I
On Wed, 3 Apr 2019 at 18:56, John H Palmieri wrote:
>
>
> On Wednesday, April 3, 2019 at 10:11:19 AM UTC-7, kcrisman wrote:
>>
>>
>>
>> On Tuesday, April 2, 2019 at 6:03:23 PM UTC-4, Dima Pasechnik wrote:
>>>
>>> On Tue, Apr 2, 2019 at 10:47 PM wrote:
>>> >
>>> > Hello, Sage community.
>>> > Wit
The simplest example:
f = piecewise([[[-pi-1, -pi/2], 0], [(-pi/2,pi/2), 1], [[pi/2, pi+1], 0]])
print(f(-pi))
which gives the traceback:
TypeError Traceback (most recent call last)
in ()
> 1 f(-pi)
/Applications/SageMath-8.7.app/Contents/Resources/sage/loca
On Wed, Apr 3, 2019 at 2:47 PM wrote:
> The simplest example:
>
> f = piecewise([[[-pi-1, -pi/2], 0], [(-pi/2,pi/2), 1], [[pi/2, pi+1], 0]])
> print(f(-pi))
>
>
I'm not sure why it isn't evaluating symbolic numbers like pi, but here's a
work-around:
sage: f = piecewise([((-pi-*1*, -pi/*2*), *0*)
On Wednesday, April 3, 2019 at 1:56:03 PM UTC-4, John H Palmieri wrote:
>
>
>
> On Wednesday, April 3, 2019 at 10:11:19 AM UTC-7, kcrisman wrote:
>>
>>
>>
>> On Tuesday, April 2, 2019 at 6:03:23 PM UTC-4, Dima Pasechnik wrote:
>>>
>>> On Tue, Apr 2, 2019 at 10:47 PM wrote:
>>> >
>>> > Hello, S