[Python-Dev] Error trying to access community buildbot page

2007-07-05 Thread Grig Gheorghiu
When I go to http://www.python.org/dev/buildbot/community/all/ I get a 503 error "Service Temporarily Unavailable". Can anybody shed some light? Thanks, Grig -- http://agiletesting.blogspot.com ___ Python-Dev mailing list Python-Dev@python.org http

Re: [Python-Dev] IDLE Functionality

2007-07-05 Thread Terry Reedy
"Oodi Pilzer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi, I am trying to duplicate the indenting functionality of the IDLE into another environment used in an educational setting at MIT. As Python is open software, I assume I can look at the source code for the IDLE. If s

Re: [Python-Dev] PEP 366 - Relative imports from main modules

2007-07-05 Thread Brett Cannon
On 7/5/07, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 11:53 AM 7/5/2007 +0200, Guido van Rossum wrote: > >I see no big problems with this, except I wonder if in the end it > >wouldn't be better to *always* define __package_name__ instead of only > >when it's in main? And then perhaps rename it

Re: [Python-Dev] PEP 366 - Relative imports from main modules

2007-07-05 Thread Phillip J. Eby
At 11:53 AM 7/5/2007 +0200, Guido van Rossum wrote: >I see no big problems with this, except I wonder if in the end it >wouldn't be better to *always* define __package_name__ instead of only >when it's in main? And then perhaps rename it to __package__? Done >properly it could always be used for re

Re: [Python-Dev] PEP 366 - Relative imports from main modules

2007-07-05 Thread Nick Coghlan
Guido van Rossum wrote: > Oh, one more thing. Perhaps we should rename it, like the other PEPs > still active slated for inclusion in Py3k (and backporting to 2.6)? Might as well be consistent - I'll take care of that when I update the PEP based on your suggestions. > On 7/5/07, Guido van Rossum

[Python-Dev] IDLE Functionality

2007-07-05 Thread Oodi Pilzer
Hi, I am trying to duplicate the indenting functionality of the IDLE into another environment used in an educational setting at MIT. As Python is open software, I assume I can look at the source code for the IDLE. If someone could kindly give me a pointer as to where I might find the source co

Re: [Python-Dev] csv changed from python 2.4 to 2.5

2007-07-05 Thread Christian
Nick Craig-Wood wrote: > Christian K <[EMAIL PROTECTED]> wrote: [...] >> Python 2.5.1 (r251:54863, May 2 2007, 16:56:35) >> [GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2 >> Type "help", "copyright", "credits" or "license" for more information. > import csv > d = csv.excel > d.del

Re: [Python-Dev] Adding NetworkIOError for bug 1706815

2007-07-05 Thread Guido van Rossum
On 7/5/07, Gregory P. Smith <[EMAIL PROTECTED]> wrote: > On Wed, Jul 04, 2007 at 11:03:42AM +0200, Guido van Rossum wrote: > > Why not simply inherit socket.error from EnvironmentError? > > True, that would be simpler; is it enough? If we avoid adding the new > exception, I really think it should

Re: [Python-Dev] PEP 366 - Relative imports from main modules

2007-07-05 Thread Guido van Rossum
Oh, one more thing. Perhaps we should rename it, like the other PEPs still active slated for inclusion in Py3k (and backporting to 2.6)? --Guido On 7/5/07, Guido van Rossum <[EMAIL PROTECTED]> wrote: > I see no big problems with this, except I wonder if in the end it > wouldn't be better to *alwa

Re: [Python-Dev] PEP 366 - Relative imports from main modules

2007-07-05 Thread Guido van Rossum
I see no big problems with this, except I wonder if in the end it wouldn't be better to *always* define __package_name__ instead of only when it's in main? And then perhaps rename it to __package__? Done properly it could always be used for relative imports, rather than parsing __module__ to find t