- 24 Nis, 2006 6 kayıt (commit)
-
-
Nick Coghlan yazdı
Fix broken contextlib test from last checkin (I'd've sworn I tested that before checking it in. . .)
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Tim Peters yazdı
requiring both expected output and an exception. I'll backport to 2.4 next.
-
- 23 Nis, 2006 18 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Tim Peters yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
Take 2 on mentioning the with statement, this time without inadvertently killing the Unicode examples
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Gerhard Häring yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
Add a Context Types section to parallel the Iterator Types section (uses the same terminology as the 2.5a1 implementation)
-
Ronald Oussoren yazdı
This patch checks if poll is broken when the select module is loaded instead of doing so at configure-time. This functionality is only active on Mac OS X.
-
Ronald Oussoren yazdı
This patch causes several symbols in the socket and posix module to be weakly linked on OSX and disables usage of ftime on OSX. These changes make it possible to use a binary build on OSX 10.4 on a 10.3 system.
-
George Yoshida yazdı
-
Greg Ward yazdı
-
- 22 Nis, 2006 12 kayıt (commit)
-
-
Hye-Shik Chang yazdı
anymore.
-
George Yoshida yazdı
- make arbitrary arguments come last
-
Martin v. Löwis yazdı
-
George Yoshida yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Neal Norwitz yazdı
-
Tim Peters yazdı
-
Andrew M. Kuchling yazdı
the 2005 Summer of Code). The revision adds a number of new mailbox classes that support adding and removing messages; these classes also support mailbox locking and default to using email.Message instead of rfc822.Message. The old mailbox classes are largely left alone for backward compatibility. The exception is the Maildir class, which was present in the old module and now inherits from the new classes. The Maildir class's interface is pretty simple, though, so I think it'll be compatible with existing code. (The change to the NEWS file also adds a missing word to a different news item, which unfortunately required rewrapping the line.)
-
Andrew M. Kuchling yazdı
compatibility classes in the new mailbox.py that I'll be committing in a few minutes. One change has been made: the tests use len(mbox) instead of len(mbox.boxes). The 'boxes' attribute was never documented and contains some internal state that seems unlikely to have been useful.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 21 Nis, 2006 4 kayıt (commit)
-
-
Phillip J. Eby yazdı
-
Tim Peters yazdı
Python 2.4 changed ntpath.abspath to do an import inside the function. As a result, due to Python's import lock, anything calling abspath on Windows (directly, or indirectly like tempfile.TemporaryFile) hung when it was called from a thread spawned as a side effect of importing a module. This is a depressingly frequent problem, and deserves a more general fix. I'm settling for a micro-fix here because this specific one accounts for a report of Zope Corp's ZEO hanging on Windows, and it was an odd way to change abspath to begin with (ntpath needs a different implementation depending on whether we're actually running on Windows, and the _obvious_ way to arrange for that is not to bury a possibly-failing import _inside_ the function). Note that if/when other micro-fixes of this kind get made, the new Lib/test/threaded_import_hangers.py is a convenient place to add tests for them.
-
Thomas Heller yazdı
I think that 'generic operating system services' is the best category. Note that the Doc/lib/libctypes.latex file is generated from reST sources. You are welcome to make typo fixes, and I'll try to keep the reST sources in sync, but markup changes would be lost - they should be fixed in the tool that creates the latex file. The conversion script is external/ctypes/docs/manual/mkpydoc.py.
-
Thomas Heller yazdı
-