- 21 Oct, 2011 1 commit
-
-
Éric Araujo authored
I’ve made more edits than the bug report suggested to make sure the generated setup script is compatible with many Python versions; a comment in the source explains that in detail. The cfg_to_args function uses old 2.x idioms like codecs.open and RawConfigParser.readfp because I want the setup.py generated by packaging and distutils2 to be the same. Most users won’t see the deprecation warning and I ignore it in the test suite. Thanks to David Barnett for the report and original patch.
-
- 19 Oct, 2011 23 commits
-
-
Éric Araujo authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
Patch by Petri Lehtinen and Josh Triplett.
-
Senthil Kumaran authored
-
Senthil Kumaran authored
exceptions, when a document with timestamp earlier than 1980 is provided to zipfile. Patch contributed by Petri Lehtinen.
-
Senthil Kumaran authored
exceptions, when a document with timestamp earlier than 1980 is provided to zipfile. Patch contributed by Petri Lehtinen.
-
Senthil Kumaran authored
semicolons. Patch by Ben Darnell and Petri Lehtinen.
-
Senthil Kumaran authored
semicolons. Patch by Ben Darnell and Petri Lehtinen.
-
Florent Xicluna authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Éric Araujo authored
-
Éric Araujo authored
- Use os.makedirs (I had forgotten about it!) - Let TempdirManager.write_file call os.path.join for us - Remove custom command added by test_dist - Use a skip instead of hiding a method with an underscore - Address pyflakes warnings
-
Éric Araujo authored
-
Éric Araujo authored
I need this for some tests, and it makes code clearer. This commit also changes some assertEqual calls to use (actual, expected) order and fix some pyflakes warnings.
-
Éric Araujo authored
-
Éric Araujo authored
The code is still ugly, but at least it works better now. Patches to make it easier to read are welcome, as well as support in #12915.
-
Éric Araujo authored
-
Éric Araujo authored
-
http://http://example.com/Łukasz Langa authored
'nonnumeric port'. It parses to a host name of "http:" which is equivalent to http:80.
-
Łukasz Langa authored
-
- 18 Oct, 2011 13 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Cool! Decoding b'\x81\x00abc' from cp932 with replace error handler is now giving the same result on all Windows versions.
-
Victor Stinner authored
-
Victor Stinner authored
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.
-
Łukasz Langa authored
-
Antoine Pitrou authored
when imported, instead doing it at build time. This makes importing sysconfig faster and reduces Python startup time by 20%.
-
Antoine Pitrou authored
generator.throw() now gets the traceback from the passed exception's ``__traceback__`` attribute. Patch by Petri Lehtinen.
-
Antoine Pitrou authored
generator.throw() now gets the traceback from the passed exception's `__traceback__` attribute. Patch by Petri Lehtinen.
-
Ezio Melotti authored
-
Ezio Melotti authored
in order to display the prompt correctly. Patch by Petri Lehtinen.
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 17 Oct, 2011 3 commits
-
-
Victor Stinner authored
encoding, to read and write MH mailboxes (.mh_sequences files).
-
Victor Stinner authored
works properly. PyErr_SetFromErrnoWithFilenameObject() was already fixed by the changeset 793c75177d28. This commit fixes PyErr_SetExcFromWindowsErrWithFilenameObject(), used on Windows.
-
Victor Stinner authored
See the FreeBSD bug: http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/155606
-