[sage-devel] Re: Problem with Integer()

2008-11-27 Thread Robert Bradshaw
On Nov 27, 2008, at 12:55 PM, Jason Grout wrote: > mabshoff wrote: >> >> >> On Nov 27, 12:34 pm, "William Stein" <[EMAIL PROTECTED]> wrote: >>> On Thu, Nov 27, 2008 at 12:30 PM, mabshoff >>> <[EMAIL PROTECTED]> wrote: >>> On Nov 27, 11:24 am, Jason Grout <[EMAIL PROTECTED]> wrote: >

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread David Joyner
This one builds fine on amd64 ubuntu 8.10 but sage -testall locks at sage -t devel/sage/sage/calculus/desolvers.py Probably the maxima/clisp issue, as with the earlier release. On Thu, Nov 27, 2008 at 4:34 AM, mabshoff <[EMAIL PROTECTED]> wrote: > > Hello, > > let's forget 3.2.1.alpha1 ever ha

[sage-devel] Re: Problem with Integer()

2008-11-27 Thread William Stein
On Thu, Nov 27, 2008 at 3:16 PM, John H Palmieri <[EMAIL PROTECTED]> wrote: > > On Nov 27, 12:34 pm, "William Stein" <[EMAIL PROTECTED]> wrote: > > [snip] > >> Moreover, Sage integers don't allow coercion from float: > > There is probably a good reason for this, but what is it? After all, > int(fl

[sage-devel] Re: Problem with Integer()

2008-11-27 Thread John H Palmieri
On Nov 27, 12:34 pm, "William Stein" <[EMAIL PROTECTED]> wrote: [snip] > Moreover, Sage integers don't allow coercion from float: There is probably a good reason for this, but what is it? After all, int(float(1)) works, so why doesn't Integer(float(1))? (Also int(RR (1)) and Integer(RR(1)) bot

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread Justin C. Walker
On Nov 27, 2008, at 01:34 , mabshoff wrote: > > Hello, > > let's forget 3.2.1.alpha1 ever happened :) > > 3.2.1.alpha2 fixes the build issues from its predecessor (I did a full > build cycle before announcing here, so no need to do an alpha3 in the > next 24 hours) and adds a couple additional p

[sage-devel] Re: Problem with Integer()

2008-11-27 Thread Ronan Paixão
Well, at least for my use I "fixed" it with rstrip('.'), and it would possibly also work to convert to CDF and then to Integer, though that would possibly create other hard-to-find problems. Well, it's worth raising the issue, even if the answer is negative. I for one never noticed int() didn't t

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread John H Palmieri
On Nov 27, 8:25 am, "William Stein" <[EMAIL PROTECTED]> wrote: > On Thu, Nov 27, 2008 at 1:34 AM, mabshoff <[EMAIL PROTECTED]> wrote: > > > Hello, > > > let's forget 3.2.1.alpha1 ever happened :) > > > 3.2.1.alpha2 fixes the build issues from its predecessor (I did a full > > build cycle before an

[sage-devel] Re: Problem with Integer()

2008-11-27 Thread Jason Grout
mabshoff wrote: > > > On Nov 27, 12:34 pm, "William Stein" <[EMAIL PROTECTED]> wrote: >> On Thu, Nov 27, 2008 at 12:30 PM, mabshoff <[EMAIL PROTECTED]> wrote: >> >>> On Nov 27, 11:24 am, Jason Grout <[EMAIL PROTECTED]> wrote: Ronan Paixão wrote: > I just found a problem with Integer().

[sage-devel] Re: Problem with Integer()

2008-11-27 Thread mabshoff
On Nov 27, 12:34 pm, "William Stein" <[EMAIL PROTECTED]> wrote: > On Thu, Nov 27, 2008 at 12:30 PM, mabshoff <[EMAIL PROTECTED]> wrote: > > > On Nov 27, 11:24 am, Jason Grout <[EMAIL PROTECTED]> wrote: > >> Ronan Paixão wrote: > >> > I just found a problem with Integer(). It doesn't seem to work

[sage-devel] Re: Problem with Integer()

2008-11-27 Thread William Stein
On Thu, Nov 27, 2008 at 12:30 PM, mabshoff <[EMAIL PROTECTED]> wrote: > > > > On Nov 27, 11:24 am, Jason Grout <[EMAIL PROTECTED]> wrote: >> Ronan Paixão wrote: >> > I just found a problem with Integer(). It doesn't seem to work fine with >> > float strings. >> > Those work fine: >> > Integer("1")

[sage-devel] Re: Problem with Integer()

2008-11-27 Thread mabshoff
On Nov 27, 11:24 am, Jason Grout <[EMAIL PROTECTED]> wrote: > Ronan Paixão wrote: > > I just found a problem with Integer(). It doesn't seem to work fine with > > float strings. > > Those work fine: > > Integer("1") > > Integer(1.) > > > But this doesn't: > > Integer("1.") > > More data: > > Int

[sage-devel] Re: Problem with Integer()

2008-11-27 Thread Jason Grout
Ronan Paixão wrote: > I just found a problem with Integer(). It doesn't seem to work fine with > float strings. > Those work fine: > Integer("1") > Integer(1.) > > But this doesn't: > Integer("1.") More data: Integer(RR('1.')) works Integer(RR('1.0')) works Integer('1.0') doesn't work I thin

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread Jaap Spies
mabshoff wrote: > > > On Nov 27, 8:25 am, "William Stein" <[EMAIL PROTECTED]> wrote: >> On Thu, Nov 27, 2008 at 1:34 AM, mabshoff <[EMAIL PROTECTED]> wrote: >> anyways, why not try this out. Just do: >> >> ./sage >> -ihttp://sage.math.washington.edu/home/mabshoff/release-cycles-3.2..1/sa... >

[sage-devel] Problem with Integer()

2008-11-27 Thread Ronan Paixão
I just found a problem with Integer(). It doesn't seem to work fine with float strings. Those work fine: Integer("1") Integer(1.) But this doesn't: Integer("1.") Traceback (most recent call last): File "", line 1, in File "/home/ronan/.sage/sage_notebook/worksheets/admin/8/code/6.py", line 6

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread Jaap Spies
mabshoff wrote: > > > On Nov 27, 10:50 am, Jaap Spies <[EMAIL PROTECTED]> wrote: > > > > Hi Jaap, > >> On Fedora 10, 32 bits all tests passed! > > Excellent. My FC 10 live dev image refuses to boot like a coward and > dies with a kernel oops with VMWare and Virtualbox. Oh well, I guess I >

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread mabshoff
On Nov 27, 8:25 am, "William Stein" <[EMAIL PROTECTED]> wrote: > On Thu, Nov 27, 2008 at 1:34 AM, mabshoff <[EMAIL PROTECTED]> wrote: > > > Hello, > > > let's forget 3.2.1.alpha1 ever happened :) > > > 3.2.1.alpha2 fixes the build issues from its predecessor (I did a full > > build cycle before

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread mabshoff
On Nov 27, 10:50 am, Jaap Spies <[EMAIL PROTECTED]> wrote: Hi Jaap, > On Fedora 10, 32 bits all tests passed! Excellent. My FC 10 live dev image refuses to boot like a coward and dies with a kernel oops with VMWare and Virtualbox. Oh well, I guess I will have to do a download and real insta

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread Jaap Spies
mabshoff wrote: > Hello, > > let's forget 3.2.1.alpha1 ever happened :) > > 3.2.1.alpha2 fixes the build issues from its predecessor (I did a full > build cycle before announcing here, so no need to do an alpha3 in the > next 24 hours) and adds a couple additional patches. One very > interesting

[sage-devel] Re: Sage 3.2.1.alpha2 released

2008-11-27 Thread William Stein
On Thu, Nov 27, 2008 at 1:34 AM, mabshoff <[EMAIL PROTECTED]> wrote: > > Hello, > > let's forget 3.2.1.alpha1 ever happened :) > > 3.2.1.alpha2 fixes the build issues from its predecessor (I did a full > build cycle before announcing here, so no need to do an alpha3 in the > next 24 hours) and add

[sage-devel] Sage 3.2.1.alpha2 released

2008-11-27 Thread mabshoff
Hello, let's forget 3.2.1.alpha1 ever happened :) 3.2.1.alpha2 fixes the build issues from its predecessor (I did a full build cycle before announcing here, so no need to do an alpha3 in the next 24 hours) and adds a couple additional patches. One very interesting patch set is #463 by William wh