Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge with 3.2. | Ezio Melotti | 2011-10-19 | 41 | -48/+48 |
|\ | |||||
| * | Remove duplication. | Ezio Melotti | 2011-10-19 | 36 | -43/+43 |
| | | |||||
* | | A ricochet from fixing #10680: http://http://example.com/ no longer reports | Łukasz Langa | 2011-10-19 | 1 | -1/+1 |
| | | | | | | | | | | 'nonnumeric port'. It parses to a host name of "http:" which is equivalent to http:80. | ||||
* | | Merged fix for #10860 from 3.2 | Łukasz Langa | 2011-10-19 | 2 | -3/+26 |
|\ \ | |/ | |||||
| * | Fixes #10860: Handle empty port after port delimiter in httplib | Łukasz Langa | 2011-10-18 | 3 | -3/+29 |
| | | |||||
* | | Simplify _PyUnicode_COMPACT_DATA() macro | Victor Stinner | 2011-10-18 | 1 | -1/+1 |
| | | |||||
* | | Add consistency check to _PyUnicode_New() | Victor Stinner | 2011-10-18 | 1 | -0/+1 |
| | | |||||
* | | Issue #12281: Fix test_codecs.test_cp932() on Windows XP | Victor Stinner | 2011-10-18 | 1 | -7/+3 |
| | | | | | | | | | | Cool! Decoding b'\x81\x00abc' from cp932 with replace error handler is now giving the same result on all Windows versions. | ||||
* | | Issue #12281: Skip code page tests on non-Windows platforms | Victor Stinner | 2011-10-18 | 1 | -6/+10 |
| | | |||||
* | | Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore | Victor Stinner | 2011-10-18 | 8 | -147/+888 |
| | | | | | | | | | | error handlers on all Windows versions. The MBCS codec is now supporting all error handlers, instead of only replace to encode and ignore to decode. | ||||
* | | Issue #13150: sysconfig no longer parses the Makefile and config.h files | Antoine Pitrou | 2011-10-18 | 4 | -7/+28 |
| | | | | | | | | | | when imported, instead doing it at build time. This makes importing sysconfig faster and reduces Python startup time by 20%. | ||||
* | | Issue #13188: When called without an explicit traceback argument, | Antoine Pitrou | 2011-10-18 | 3 | -0/+35 |
|\ \ | |/ | | | | | | | generator.throw() now gets the traceback from the passed exception's ``__traceback__`` attribute. Patch by Petri Lehtinen. | ||||
| * | Issue #13188: When called without an explicit traceback argument, | Antoine Pitrou | 2011-10-18 | 3 | -0/+35 |
| | | | | | | | | | | generator.throw() now gets the traceback from the passed exception's `__traceback__` attribute. Patch by Petri Lehtinen. | ||||
* | | #12448: merge with 3.2. | Ezio Melotti | 2011-10-18 | 2 | -0/+4 |
|\ \ | |/ | |||||
| * | #12448: smtplib now flushes stdout while running ``python -m smtplib`` | Ezio Melotti | 2011-10-18 | 2 | -0/+4 |
| | | | | | | | | in order to display the prompt correctly. Patch by Petri Lehtinen. | ||||
* | | #12277: merge with 3.2. | Ezio Melotti | 2011-10-18 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #12277: add missing comma. | Ezio Melotti | 2011-10-18 | 1 | -1/+1 |
| | | |||||
* | | Close #12454: The mailbox module is now using ASCII, instead of the locale | Victor Stinner | 2011-10-17 | 2 | -5/+5 |
| | | | | | | | | encoding, to read and write MH mailboxes (.mh_sequences files). | ||||
* | | Instantiate the OS-related exception as soon as we raise it, so that "except" | Victor Stinner | 2011-10-17 | 2 | -6/+21 |
| | | | | | | | | | | | | | | | | works properly. PyErr_SetFromErrnoWithFilenameObject() was already fixed by the changeset 793c75177d28. This commit fixes PyErr_SetExcFromWindowsErrWithFilenameObject(), used on Windows. | ||||
* | | Issue #12367: Test test_select.test_errno() on FreeBSD | Victor Stinner | 2011-10-17 | 1 | -0/+3 |
| | | | | | | | | | | See the FreeBSD bug: http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/155606 | ||||
* | | Merge #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are ↵ | Nadeem Vawda | 2011-10-17 | 2 | -0/+6 |
|\ \ | |/ | | | | | now available on Windows. | ||||
| * | Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are ↵ | Nadeem Vawda | 2011-10-17 | 2 | -0/+6 |
| | | | | | | | | now available on Windows. | ||||
* | | Issue #13146: Writing a pyc file is now atomic under POSIX. | Antoine Pitrou | 2011-10-17 | 3 | -12/+61 |
| | | |||||
* | | Fix typo | Antoine Pitrou | 2011-10-17 | 1 | -1/+1 |
| | | |||||
* | | merge 3.2 (#13199) | Benjamin Peterson | 2011-10-17 | 1 | -1/+5 |
|\ \ | |/ | |||||
| * | plug possible refleak (closes #13199) | Benjamin Peterson | 2011-10-17 | 1 | -1/+5 |
| | | |||||
* | | normalize whitespace in Lib/distutils/msvc9compiler.py | Mark Hammond | 2011-10-17 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | normalize whitespace in Lib/distutils/msvc9compiler.py | Mark Hammond | 2011-10-17 | 1 | -1/+1 |
| | | |||||
* | | Issue #7833: Ext. modules built using distutils on Windows no longer get a ↵ | Mark Hammond | 2011-10-17 | 3 | -23/+106 |
|\ \ | |/ | | | | | manifest | ||||
| * | Issue #7833: Ext. modules built using distutils on Windows no longer get a ↵ | Mark Hammond | 2011-10-17 | 3 | -23/+106 |
| | | | | | | | | manifest | ||||
* | | (null merge 3.2, fix already applied to default) | Victor Stinner | 2011-10-16 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #10653: Fix time.strftime() on Windows, check for invalid format strings | Victor Stinner | 2011-10-16 | 1 | -4/+4 |
| | | |||||
* | | Close #13174: Fix extended attributes tests in test_os for SELinux | Victor Stinner | 2011-10-16 | 1 | -5/+10 |
| | | | | | | | | On Fedora, new files get the 'security.selinux' attribute. | ||||
* | | test_select: use a timeout=0 in test_errno() | Victor Stinner | 2011-10-16 | 1 | -1/+1 |
| | | |||||
* | | Issue #10653: Fix time.strftime() on Windows, check for invalid format strings | Victor Stinner | 2011-10-16 | 1 | -4/+4 |
| | | |||||
* | | Fix closes issue 1673007 urllib.request to support HEAD requests with a new ↵ | Senthil Kumaran | 2011-10-16 | 5 | -9/+72 |
| | | | | | | | | method arg. | ||||
* | | Merge | Raymond Hettinger | 2011-10-16 | 2 | -15/+35 |
|\ \ | |/ | |||||
| * | Issue 13177: Make tracebacks more readable by avoiding chained exceptions in ↵ | Raymond Hettinger | 2011-10-16 | 3 | -15/+39 |
| | | | | | | | | the lru_cache. | ||||
* | | Fix build under Windows | Antoine Pitrou | 2011-10-15 | 1 | -1/+1 |
| | | |||||
* | | remove some duplication | Benjamin Peterson | 2011-10-15 | 1 | -10/+4 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2011-10-14 | 1 | -6/+0 |
|\ \ | |/ | |||||
| * | Update dead references from py.org/dev/faq to the devguide (#13176) | Éric Araujo | 2011-10-14 | 3 | -12/+8 |
| | | |||||
* | | Cleanup in packaging: super considered super | Éric Araujo | 2011-10-14 | 8 | -16/+15 |
| | | |||||
* | | Fix writing of the RESOURCES file by packaging (#12386) | Éric Araujo | 2011-10-14 | 4 | -6/+62 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2011-10-14 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Branch merge | Éric Araujo | 2011-10-14 | 2 | -7/+195 |
| |\ | |||||
* | \ | Branch merge | Éric Araujo | 2011-10-14 | 6 | -19/+437 |
|\ \ \ | |||||
| * | | | Increase test coverage for packaging.manifest (#11751). | Éric Araujo | 2011-10-11 | 2 | -2/+199 |
| | | | | | | | | | | | | | | | | Patch by Justin Love. | ||||
| * | | | Merge #11751 from 3.2 | Éric Araujo | 2011-10-11 | 2 | -7/+195 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Increase test coverage for distutils.filelist (#11751). | Éric Araujo | 2011-10-11 | 2 | -7/+195 |
| | | | | | | | | | | | | | | | | Patch by Justin Love. |