| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Null merge. | Charles-François Natali | 2011-11-27 | 0 | -0/+0 |
| |\ | |||||
| | * | Issue #13415: Test in configure if unsetenv() has a return value or not. | Charles-François Natali | 2011-11-27 | 4 | -310/+333 |
| | | | |||||
| * | | MERGE: Closes issue #13488: Some old preprocessors have problem with #define ↵ | Jesus Cea | 2011-11-27 | 1 | -80/+80 |
| |\ \ | |/ | | | | | not in the first column | ||||
| | * | Closes issue #13488: Some old preprocessors have problem with #define not in ↵ | Jesus Cea | 2011-11-27 | 1 | -80/+80 |
| | | | | | | | | | the first column | ||||
| * | | Issue #13415: Help to locate curses.h when _curses module is linked to ncursesw | Victor Stinner | 2011-11-26 | 2 | -1/+8 |
| | | | |||||
| * | | Issue #13444: When stdout has been closed explicitly, we should not attempt ↵ | Antoine Pitrou | 2011-11-26 | 3 | -2/+40 |
| |\ \ | |/ | | | | | | | | | to flush it at shutdown and print an error. This also adds a test for issue #5319, whose resolution introduced the issue. | ||||
| | * | Issue #13444: When stdout has been closed explicitly, we should not attempt ↵ | Antoine Pitrou | 2011-11-26 | 3 | -2/+40 |
| | | | | | | | | | | | | | to flush it at shutdown and print an error. This also adds a test for issue #5319, whose resolution introduced the issue. | ||||
| * | | Issue #12618: fix py_compile unit tests to handle different drives on Windows | Meador Inge | 2011-11-26 | 1 | -0/+10 |
| |\ \ | |/ | |||||
| | * | Issue #12618: fix py_compile unit tests to handle different drives on Windows | Meador Inge | 2011-11-26 | 1 | -0/+10 |
| | | | |||||
| * | | sched.py: fix test_queue by making sure that queue property returns an ↵ | Giampaolo Rodola' | 2011-11-26 | 1 | -7/+8 |
| | | | | | | | | | orderd list of upcoming events | ||||
| * | | Issue #13415: Skip test_os.test_unset_error on FreeBSD < 7 and OS X < 10.6 | Charles-François Natali | 2011-11-26 | 1 | -0/+4 |
| | | | | | | | | | (where unsetenv() doesn't return a value). | ||||
| * | | Issue #12618: create unit tests for the py_compile module | Meador Inge | 2011-11-26 | 1 | -0/+42 |
| |\ \ | |/ | |||||
| | * | Issue #12618: create unit tests for the py_compile module | Meador Inge | 2011-11-26 | 1 | -0/+42 |
| | | | |||||
| * | | Issue #13380: add an internal function for resetting the ctypes caches | Meador Inge | 2011-11-26 | 4 | -9/+25 |
| |\ \ | |/ | |||||
| | * | Issue #13380: add an internal function for resetting the ctypes caches | Meador Inge | 2011-11-26 | 4 | -9/+25 |
| | | | |||||
| * | | Some libcs' snprintf may output a leading minus sign when %p-formatting | Antoine Pitrou | 2011-11-26 | 1 | -17/+17 |
| | | | | | | | | | (should fix a failure on the OpenIndiana AMD64 buildbot) | ||||
| * | | Merge heads | Antoine Pitrou | 2011-11-26 | 32 | -306/+1040 |
| |\ \ | |||||
| | * | | Issue #12567: The curses module uses Unicode functions for Unicode arguments | Victor Stinner | 2011-11-25 | 6 | -121/+520 |
| | | | | | | | | | | | | | | | | when it is linked to the ncurses library. It encodes also Unicode strings to the locale encoding instead of UTF-8. | ||||
| | * | | Issue #12856: Ensure child processes do not inherit the parent's random seed ↵ | Antoine Pitrou | 2011-11-25 | 3 | -2/+43 |
| | |\ \ | | |/ | | | | | | | | | | | | | for filename generation in the tempfile module. Patch by Brian Harring. | ||||
| | | * | Issue #12856: Ensure child processes do not inherit the parent's random seed ↵ | Antoine Pitrou | 2011-11-25 | 3 | -2/+43 |
| | | | | | | | | | | | | | | | | | | | for filename generation in the tempfile module. Patch by Brian Harring. | ||||
| | * | | NEWS: fix the issue number for PyUnicode_EncodeDecimal change | Victor Stinner | 2011-11-25 | 1 | -1/+1 |
| | | | | |||||
| | * | | Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlers | Victor Stinner | 2011-11-25 | 3 | -127/+26 |
| | | | | | | | | | | | | | | | | different than "strict" anymore. The caller was unable to compute the size of the output buffer: it depends on the error handler. | ||||
| | * | | Typo | Antoine Pitrou | 2011-11-25 | 1 | -1/+1 |
| | | | | |||||
| | * | | Update What's new for PEP 3155 | Antoine Pitrou | 2011-11-25 | 1 | -0/+59 |
| | | | | |||||
| | * | | PEP 3155 / issue #13448: Qualified name for classes and functions. | Antoine Pitrou | 2011-11-25 | 21 | -43/+322 |
| | | | | |||||
| | * | | Issue #9957: SpooledTemporaryFile.truncate() now accepts an optional size ↵ | Antoine Pitrou | 2011-11-25 | 3 | -3/+31 |
| | | | | | | | | | | | | | | | | | | | parameter, as other file-like objects. Patch by Ryan Kelly. | ||||
| | * | | Clarify concatenation behaviour of immutable strings, and remove explicit | Antoine Pitrou | 2011-11-25 | 2 | -9/+38 |
| | |\ \ | | |/ | | | | | | | mention of the CPython optimization hack. | ||||
| | | * | Clarify concatenation behaviour of immutable strings, and remove explicit | Antoine Pitrou | 2011-11-25 | 2 | -9/+38 |
| | | | | | | | | | | | | | mention of the CPython optimization hack. | ||||
| | * | | fix some typos in Doc/c-api/memoryview.rst | Eli Bendersky | 2011-11-25 | 1 | -2/+2 |
| | |\ \ | | |/ | |||||
| | | * | fix some typos in Doc/c-api/memoryview.rst | Eli Bendersky | 2011-11-25 | 1 | -2/+2 |
| | | | | |||||
| * | | | Better resolution for issue #11849: Ensure that free()d memory arenas are ↵ | Antoine Pitrou | 2011-11-26 | 5 | -65/+35 |
| |/ / | | | | | | | | | | | really released on POSIX systems supporting anonymous memory mappings. Patch by Charles-François Natali. | ||||
| * | | Add a "What's New" entry for #12170 | Petri Lehtinen | 2011-11-24 | 1 | -0/+7 |
| | | | |||||
| * | | merge from 3.2 testFnNames is assigned twice. | Senthil Kumaran | 2011-11-24 | 1 | -2/+1 |
| |\ \ | |/ | |||||
| | * | testFnNames is assigned twice. | Senthil Kumaran | 2011-11-24 | 1 | -2/+1 |
| | | | |||||
| * | | Close #13415: Test in configure if unsetenv() has a return value or not. | Victor Stinner | 2011-11-24 | 4 | -1/+46 |
| | | | | | | | | | Patch written by Charles-François Natali. | ||||
| * | | and back to the "magic" formula (with a comment) it is | Benjamin Peterson | 2011-11-23 | 1 | -15/+3 |
| | | | |||||
| * | | Merged documentation addition from 3.2. | Vinay Sajip | 2011-11-23 | 1 | -0/+64 |
| |\ \ | |/ | |||||
| | * | Added a configuration dictionary example to the logging cookbook. | Vinay Sajip | 2011-11-23 | 1 | -0/+64 |
| | | | |||||
| * | | Closes #13459: Merged fix from 3.2. | Vinay Sajip | 2011-11-23 | 1 | -3/+9 |
| |\ \ | |/ | |||||
| | * | Closes #13459: Clarified documentation on Logger.propagate. Thanks to Mike ↵ | Vinay Sajip | 2011-11-23 | 1 | -3/+9 |
| | | | | | | | | | Fogel for the patch. | ||||
| * | | merge 3.2 (null) | Benjamin Peterson | 2011-11-23 | 0 | -0/+0 |
| |\ \ | |/ | |||||
| | * | decref correct object | Benjamin Peterson | 2011-11-23 | 1 | -1/+1 |
| | | | |||||
| * | | merge 3.2 | Benjamin Peterson | 2011-11-23 | 1 | -1/+5 |
| |\ \ | |/ | |||||
| | * | plug refleak | Benjamin Peterson | 2011-11-23 | 1 | -1/+3 |
| | | | |||||
| * | | merge heads | Benjamin Peterson | 2011-11-23 | 9 | -102/+68 |
| |\ \ | |||||
| | * \ | Issue #13458: Fix a memory leak in the ssl module when decoding a ↵ | Antoine Pitrou | 2011-11-23 | 2 | -0/+4 |
| | |\ \ | | |/ | | | | | | | | | | | | | certificate with a subjectAltName. Patch by Robert Xiao. | ||||
| | | * | Issue #13458: Fix a memory leak in the ssl module when decoding a ↵ | Antoine Pitrou | 2011-11-23 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | certificate with a subjectAltName. Patch by Robert Xiao. | ||||
| | * | | revert cset 6a0da9b65e54 against sched.py committed by accident | Giampaolo Rodola' | 2011-11-22 | 1 | -8/+0 |
| | | | | |||||
| | * | | (Merge 3.2) Issue #13436: Fix unsetenv() test on Windows | Victor Stinner | 2011-11-22 | 1 | -1/+2 |
| | |\ \ | | |/ | |||||
| | | * | Issue #13436: Fix unsetenv() test on Windows | Victor Stinner | 2011-11-22 | 1 | -1/+2 |
| | | | | |||||
