Re: [sage-devel] Re: Error in compiling Sage 5.9 in Fedora 18

2013-06-22 Thread Wai Man Chung
Hi, After trying "make distclean" to start the build from scratch, the build finally succeed. Thanks. On Sun, Jun 23, 2013 at 7:13 AM, Volker Braun wrote: > You have some half-built gfortran in the path, try "make distclean" to > start the build from scratch. > > > > > On Saturday, June 22,

[sage-devel] Re: The 2013 Spies Prize winner is...

2013-06-22 Thread Jason Grout
Congratulations! This is very deserved. We *really* appreciate all the work you've done! I think it's been critical to the success of Sage. Jason On 6/22/13 12:48 PM, William Stein wrote: Jeroen Demeyer has provided excellent service to the Sage community as release manager, starting with

[sage-devel] Re: The 2013 Spies Prize winner is...

2013-06-22 Thread mhampton
Excellent choice, congratulations Jeroen! -Marshall -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To post to this group

Re: [sage-devel] Re: Error in compiling Sage 5.9 in Fedora 18

2013-06-22 Thread Volker Braun
You have some half-built gfortran in the path, try "make distclean" to start the build from scratch. On Saturday, June 22, 2013 2:49:07 AM UTC-7, Wai Man Chung wrote: > > I have taken advice of Volker Braun and run "sudo yum install gcc-c++ > gcc-gfortran", then I run "make" again, it runs for

Re: [sage-devel] Mutable default parameters in Sage

2013-06-22 Thread Mathieu Guay-Paquet
On Friday, 21 June 2013 12:56:10 UTC+2, John Cremona wrote: > > Perhaps the best way forward would be to split this up into sections, > rather than doing it all at once. For example we could deal with the > elliptic curve cases in one ticket. > Right, having separate tickets and patches for se

Re: [sage-devel] Re: The 2013 Spies Prize winner is...

2013-06-22 Thread Julien Puydt
Le 22/06/2013 21:55, leif a écrit : William Stein wrote: For his conscientious and technically excellent work as Sage release manager, and his significant contributions to the Sage library, Jeroen Demeyer is awarded the 2013 Spies Prize. Just wonder whether he's already on vacation (i.e., offl

[sage-devel] Re: The 2013 Spies Prize winner is...

2013-06-22 Thread leif
William Stein wrote: For his conscientious and technically excellent work as Sage release manager, and his significant contributions to the Sage library, Jeroen Demeyer is awarded the 2013 Spies Prize. Just wonder whether he's already on vacation (i.e., offline)... ;-) Anyway, congrats! -lei

Re: [sage-devel] The 2013 Spies Prize winner is...

2013-06-22 Thread David Kirkby
On 22 June 2013 19:48, William Stein wrote: > Please join me in congratulating Jeroen! > > -- The 2013 Spies Prize Committee Well done - an excellent choice. Dave -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group

[sage-devel] Re: The 2013 Spies Prize winner is...

2013-06-22 Thread Rob Beezer
Congratulations, Jeroen! Well deserved. Thanks for all your excellent work with the releases! Rob -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+un

Re: [sage-devel] The 2013 Spies Prize winner is...

2013-06-22 Thread David Joyner
Congrats Jeroen! On Sat, Jun 22, 2013 at 2:48 PM, William Stein wrote: > Jeroen Demeyer has provided excellent service to the Sage community as > release manager, starting with Version 4.6.1 in January 2011, just > five months after his first code contribution. He has continued to > contribute

[sage-devel] The 2013 Spies Prize winner is...

2013-06-22 Thread William Stein
Jeroen Demeyer has provided excellent service to the Sage community as release manager, starting with Version 4.6.1 in January 2011, just five months after his first code contribution. He has continued to contribute significant code to the Sage library in the area of number theory, including over

[sage-devel] Re: Import problem

2013-06-22 Thread Travis Scrimshaw
It's better to import them at the module level (I've been told it's faster when calling the function). However due to circular imports, this is not always possible (unless you lazily import it). Although it sometimes is best to put things in functions that only use a certain module in one (or

[sage-devel] ppa mirror ?

2013-06-22 Thread Thierry Dumont
Hello, Is there only one ppa server for Ubuntu ? If YES, may be it would be reasonable to make mirrors: in my lab, I install sage on all the machines using the ppa: it means 5 interactive servers (we use ltsp for every day computer access) + a cluster of 12 machines + Maybe the "tube"

Re: [sage-devel] Re: Error in compiling Sage 5.9 in Fedora 18

2013-06-22 Thread Wai Man Chung
Hi, Thanks for the advice. I have taken advice of Volker Braun and run "sudo yum install gcc-c++ gcc-gfortran", then I run "make" again, it runs for a while and it seems the previous error is passed. But there is other similar error : = gfortran: e

[sage-devel] Re: Import problem

2013-06-22 Thread Matthieu Deneufchâtel
Thanks, that works! I thought it was better to import the modules outside the functions I am writing. Is there a rule ? Matthieu Le samedi 22 juin 2013 09:56:46 UTC+2, Travis Scrimshaw a écrit : > > Hey Matthieu, >Sounds like a circular import. You'll have to import FreeMonoid in the > funct

[sage-devel] Re: Import problem

2013-06-22 Thread Travis Scrimshaw
Hey Matthieu, Sounds like a circular import. You'll have to import FreeMonoid in the function that you are using it in. For example: def foo(x): from sage.some.module import Bar Bar(x) ... Best, Travis On Friday, June 21, 2013 3:54:51 PM UTC+2, Matthieu Deneufchâtel wrote: > > I

[sage-devel] Re: find_stat in Sage, the combinatorial_map decorator and its consequences

2013-06-22 Thread Dima Pasechnik
On 2013-06-22, Volker Braun wrote: > --=_Part_5_26369588.1371859450149 > Content-Type: text/plain; charset=ISO-8859-1 > > http://www.python.org/dev/peps/pep-0318/ > > On Friday, June 21, 2013 1:43:13 PM UTC-7, Dima Pasechnik wrote: >> >> Why does one even need a decorator in Simon's proposal?