Re: [Python-Dev] cgi.FieldStorage DOS (sf bug #1112549)

2006-08-06 Thread Tim Peters
[Chris McDonough, on 7/28/06] > From the initial bugreport > (http://sourceforge.net/tracker/index.php? > func=detail&aid=1112549&group_id=5470&atid=105470) > > """ > Various parts of cgi.FieldStorage call its > "read_lines_to_outerboundary", "read_lines" and > "skip_lines" methods. These methods

Re: [Python-Dev] More tracker demos online

2006-08-06 Thread Brett Cannon
On 8/5/06, Hernan M Foffani <[EMAIL PROTECTED]> wrote: > > > > Currently, we have two running tracker demos online:> > > >> > > > Roundup:> > > > http://efod.se/python-tracker/ > > > >> > > > Jira:> > > > http://jira.python.atlassian.com/secure/Dashboard.jspa>> > Is anyone looking at the Google Cod

[Python-Dev] windows 2.5 build: use OpenSSL for hashlib [bug 1535502]

2006-08-06 Thread Gregory P. Smith
Whoever knows how the windows build process works and controls the python 2.5 windows release builds could you please make sure the hashlib module gets built + linked with OpenSSL rather than falling back to its much slower builtin implementations. http://sourceforge.net/tracker/index.php?func=d

Re: [Python-Dev] BZ2File.writelines should raise more meaningful exceptions

2006-08-06 Thread Lawrence Oluyede
> Always post patches -- that way they can't get lost. *THEN* post to > python-dev with your analysis and explanation (which you presumably also > included with the patch), starting with a link to the patch. Thanks for the hint. This is the link: http://sourceforge.net/tracker/index.php?func=deta

Re: [Python-Dev] BZ2File.writelines should raise more meaningful exceptions

2006-08-06 Thread Aahz
On Sun, Aug 06, 2006, Lawrence Oluyede wrote: > > The patch is attached. If you think it's ok to fix this I'll post it > to the bug tracker Always post patches -- that way they can't get lost. *THEN* post to python-dev with your analysis and explanation (which you presumably also included with th

[Python-Dev] test_mailbox on Cygwin

2006-08-06 Thread Andrew MacIntyre
I just had a look at the Cygwin buildbot's test log, and noticed that test_mailbox has failures that look very similar to those I addressed in rev 50789 for the OS/2 EMX platform. Hopefully this might give someone with access to Cygwin a starting point in getting this test working on that platform

[Python-Dev] BZ2File.writelines should raise more meaningful exceptions

2006-08-06 Thread Lawrence Oluyede
In the BZ2File object of bz2 module the writelines() method does not check its closed state before doing the actual work so its behavior it's different from write()'s behavior. See: from bz2 import BZ2File f = BZ2File("foo", "w") f.close() f.closed 1 f.write("foobar") Traceback (most recent c