summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix a unittest error seen on NetBSD 5.Gregory P. Smith2012-01-211-2/+12
|\
| * Fix a unittest error seen on NetBSD 5.Gregory P. Smith2012-01-211-2/+12
| |
* | Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix.Gregory P. Smith2012-01-211-9/+47
|\ \ | |/
| * Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix.Gregory P. Smith2012-01-211-9/+47
| |
* | Improve the test for dirfd(). Some systems #define it rather thanGregory P. Smith2012-01-213-49/+65
|\ \ | |/ | | | | have it as a library function.
| * Improve the test for dirfd(), some systems #define it rather than haveGregory P. Smith2012-01-213-49/+65
| | | | | | | | an actual function.
* | bugfix for *BSD platforms. (oops messed up #define)Gregory P. Smith2012-01-211-4/+2
|\ \ | |/
| * Another issue #8052 bugfix (related to previous commit).Gregory P. Smith2012-01-211-4/+2
| | | | | | | | "oops" while rearranging the #defines.
* | bugfix for issue 8052 fixes on *BSD platforms.Gregory P. Smith2012-01-211-9/+13
|\ \ | |/
| * Bugfix for issue #8052 fix on *BSD variants.Gregory P. Smith2012-01-211-9/+13
| | | | | | | | | | Many lack readdir64, use readdir. Only use readdir64 on solaris where it is required to work around a solaris bug.
* | A Misc/NEWS entry for issue 8052.Gregory P. Smith2012-01-211-0/+5
|\ \ | |/
| * Add a Misc/NEWS entry for issue 8052.Gregory P. Smith2012-01-211-0/+5
| |
* | Fixes issue #8052: The posix subprocess module's close_fds behavior wasGregory P. Smith2012-01-215-37/+281
|\ \ | |/ | | | | | | | | | | | | suboptimal by closing all possible file descriptors rather than just the open ones in the child process before exec(). It now closes only the open fds when it is possible to safely determine what those are.
| * Fixes issue #8052: The posix subprocess module's close_fds behavior wasGregory P. Smith2012-01-215-37/+281
| | | | | | | | | | | | | | | | suboptimal by closing all possible file descriptors rather than just the open ones in the child process before exec(). It now closes only the open fds when it is possible to safely determine what those are.
* | Avoid the compiler warning about the unused return value.Gregory P. Smith2012-01-211-6/+9
|\ \ | |/
| * Avoid the compiler warning about the unused return value.Gregory P. Smith2012-01-211-6/+9
| |
* | Issue #12922: fix the TextIOBase documentation to include a description of ↵Antoine Pitrou2012-01-211-0/+26
|\ \ | |/ | | | | seek() and tell() methods.
| * Issue #12922: fix the TextIOBase documentation to include a description of ↵Antoine Pitrou2012-01-211-0/+26
| | | | | | | | seek() and tell() methods.
* | Issue #13706: Support non-ASCII fill charactersVictor Stinner2012-01-212-15/+39
| |
* | merge with 3.2Sandro Tosi2012-01-211-1/+1
|\ \ | |/
| * fix typo; thanks to Justin Watt from docs@Sandro Tosi2012-01-211-1/+1
| |
* | merge from 3.2Senthil Kumaran2012-01-214-2/+8
|\ \ | |/
| * Fix Issue6631 - Disallow relative file paths in urllib urlopenSenthil Kumaran2012-01-214-0/+9
| |
* | add another test caseBenjamin Peterson2012-01-201-0/+1
| |
* | phony merge of 76077971ee1f from 3.2Łukasz Langa2012-01-200-0/+0
|\ \ | |/
| * #13760: picklability tests for configparser exceptionsŁukasz Langa2012-01-201-0/+145
| |
* | #13760: picklability tests for configparser exceptionsŁukasz Langa2012-01-201-0/+145
| |
* | Closes #13807: Merged fix from 3.2.Vinay Sajip2012-01-201-1/+1
|\ \ | |/
| * Closes #13807: Merged fix from 3.1.Vinay Sajip2012-01-201-1/+1
| |\
| | * Closes #13807: Now checks for sys.stderr being there before writing to it.Vinay Sajip2012-01-201-1/+1
| | |
* | | Issue #12949: Document the kwonlyargcount argument for the PyCode_New C API ↵Meador Inge2012-01-192-1/+4
|\ \ \ | |/ / | | | | | | function.
| * | Issue #12949: Document the kwonlyargcount argument for the PyCode_New C API ↵Meador Inge2012-01-192-1/+4
| | | | | | | | | | | | function.
* | | Issue #10278: Be more explicit in tests than wallclock() is monotonic (cannotVictor Stinner2012-01-201-4/+9
| | | | | | | | | | | | go backward)
* | | Improve exception text. Closes issue 13811.Eric V. Smith2012-01-191-2/+2
| | |
* | | check after comments, too (#13832)Benjamin Peterson2012-01-192-7/+19
| | |
* | | Issue #13605: merge with 3.2Sandro Tosi2012-01-191-5/+5
|\ \ \ | |/ /
| * | Issue #13605: more meaningful example + fixesSandro Tosi2012-01-191-5/+5
| | |
* | | Issue #13605: merge with 3.2Sandro Tosi2012-01-191-0/+11
|\ \ \ | |/ /
| * | Issue #13605: add documentation for nargs=argparse.REMAINDERSandro Tosi2012-01-191-0/+11
| | |
* | | don't leak nodeBenjamin Peterson2012-01-191-0/+1
| | |
* | | only check this when parsing pythonBenjamin Peterson2012-01-191-0/+2
| | |
* | | Issue #11948: merge with 3.2Sandro Tosi2012-01-191-18/+16
|\ \ \ | |/ /
| * | Issue #11948: clarify modules search pathSandro Tosi2012-01-191-18/+16
| | |
* | | Issue #12705: Raise SyntaxError when compiling multiple statements as single ↵Meador Inge2012-01-195-0/+52
| | | | | | | | | | | | interactive statement
* | | Issue #2134: Add support for tokenize.TokenInfo.exact_type.Meador Inge2012-01-194-3/+187
| | |
* | | Null mergeMeador Inge2012-01-190-0/+0
|\ \ \ | |/ /
| * | Issue #2134: Clarify token.OP handling rationale in tokenize documentation.Meador Inge2012-01-192-0/+9
| | |
* | | improve casefold/lower/upper docsBenjamin Peterson2012-01-181-2/+18
| | |
* | | Be more lenient in test_wallclock (issue #10278).Antoine Pitrou2012-01-181-2/+2
| | |
* | | Issue #13722: Avoid silencing ImportErrors when initializing the codecs ↵Antoine Pitrou2012-01-182-9/+3
|\ \ \ | |/ / | | | | | | registry.