[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
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
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
> 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
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
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
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