- 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
- 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
- c53eb9d Merge 3.2 to default by Andrew Svetlov · 12 years ago
- d182a6c Modules/socketmodule.c: netdb_lock: define static. by Matthias Klose · 12 years ago
- 80dd1af Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 12 years ago
- 03b4d50 Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 12 years ago
- 3cc635d faulthandler: fix the handler of user signals by Victor Stinner · 12 years ago
- 22701e8 Issue #15589: Ensure double-alignment for brute-force capi argument parser test by Larry Hastings · 12 years ago
- 62bb394 Close #13072: Restore code before the PEP 393 for the array module by Victor Stinner · 12 years ago
- 8486987 Issue #12655: Instead of requiring a custom type, os.sched_getaffinity and by Antoine Pitrou · 12 years ago
- d1f9352 (Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n' by Victor Stinner · 12 years ago
- 401e17d open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't by Victor Stinner · 12 years ago
- 3c25dfb Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 12 years ago
- 0c1c0d4 Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 12 years ago
- 1659b75 MERGE: Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
- 16e2fca Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
- 88ca04e MERGE: Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
- e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
- 5323173 Closes #15514: Correct __sizeof__ support for cpu_set by Jesus Cea · 12 years ago
- 77821b6 Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. by Antoine Pitrou · 12 years ago
- a9a53c7 Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. by Antoine Pitrou · 12 years ago
- 98a387b Fix the user signal handler of faulthandler by Victor Stinner · 12 years ago
- 57911f6 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 12 years ago
- 8f328d0 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 12 years ago
- a264384 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 12 years ago
- 10f0c50 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 12 years ago
- bb9b1c1 Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 12 years ago
- 90bc2dbc Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 12 years ago
- ee365ac Issue #15431: Declare PyImport_FrozenModules conditionally on Unix only. by Martin v. Löwis · 12 years ago
- 96d97ec Issue #15431: Add _freeze_importlib project to regenerate importlib.h on Windows. by Martin v. Löwis · 12 years ago
- b9e36b9 Add unused parameter to a couple of METH_NOARGS functions. The previous by Stefan Krah · 12 years ago
- 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
- f3923e9 Issue #15413: os.times() had disappeared under Windows. by Antoine Pitrou · 12 years ago
- 9f65899 Issue #15402: Add a __sizeof__ method to struct.Struct. by Meador Inge · 12 years ago
- b14d8c9 Issue #15402: Add a __sizeof__ method to struct.Struct. by Meador Inge · 12 years ago
- 80823d7 #15094: fix incorrectly placed #endif in _tkinter.c. by Andrew Svetlov · 12 years ago
- 7b31b1a Raise ImportError if pyexpat's version is incompatible by Eli Bendersky · 12 years ago
- ef391ac Raise ImportError if pyexpat's version is incompatible by Eli Bendersky · 12 years ago
- 26a1c7a Fix Visual Studio warning. by Stefan Krah · 12 years ago
- 024abca MERGE: Closes #15395: memory leaks in selectmodule.c by Jesus Cea · 12 years ago
- 62a5c32 Closes #15395: memory leaks in selectmodule.c by Jesus Cea · 12 years ago
- 3cd346a MERGE: Closes #15396: memory leak in tkinter by Jesus Cea · 12 years ago
- ef86d12 Closes #15396: memory leak in tkinter by Jesus Cea · 12 years ago
- 7506dab Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 12 years ago
- 60c2266 Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 12 years ago
- 90db661 Closes #15307: symlinks now work on OS X with framework Python builds. Patch by Ronald Oussoren. by Vinay Sajip · 12 years ago
- b48ff7f Merge for #14988 by Eli Bendersky · 12 years ago
- 66099b0 ISsue #14988: restore Python 2's behavior of raising ImportError when unable to load pyexpat, instead of a SystemError/RuntimeError by Eli Bendersky · 12 years ago
- 7c6309c Update the embedded copy of the expat XML parser to 2.1.0. It brings by Gregory P. Smith · 12 years ago
- e574402 Issue #7652: Clean up _mpd_qinvroot() and mark it LIBMPDEC_ONLY. Use the by Stefan Krah · 12 years ago
- 109d573 Issue #13248: io: Remove obsolete argument "max_buffer_size" of BufferedWriter and BufferedRWPair. by Florent Xicluna · 12 years ago
- 7d7f40c Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
- 9235b25 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
- 2240ac1 Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open. by Richard Oudkerk · 12 years ago
- f28fbab Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
- f01a337 Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
- d57caf3 Remove ISSUES.txt. by Stefan Krah · 12 years ago
- d4ea23f - Issue #15194: check in the missing m4/ax_append_flag.m4 file. by doko@ubuntu.com · 12 years ago
- 49a7da3 - Issue #15194: check in the missing m4/ax_check_compile_flag.m4 file. by doko@ubuntu.com · 12 years ago
- cc5addd - Issue #14330: Don't derive the include and library search dirs by doko@ubuntu.com · 12 years ago
- b14168d null merge by doko@ubuntu.com · 12 years ago
- 36f9805 - Regenerate the libffi configure file by doko@ubuntu.com · 12 years ago
- 5431e30 After 79d2eb29c755 it is no longer necessary to zero the output array: by Stefan Krah · 12 years ago
- c35a8e5 Proactive reliability fix for broken FPUs: The base conversion functions by Stefan Krah · 12 years ago
- 802d669 Issue #5067: improve some json error messages. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
- 2d24e94 Issue #5067: improve some json error messages. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
- 591c1cc Remove dead code by Victor Stinner · 12 years ago
- c02be61 - whitespace-normalize libffi file by Matthias Klose · 12 years ago
- 2a91876 - Issue #15194: Update libffi to the 3.0.11 release. by doko@ubuntu.com · 12 years ago
- 969288e Use ValueError, not RuntimeError for a utime flag combination illegal on some systems. by Georg Brandl · 12 years ago
- 0b1b9ce If main() is called and an argument cannot be decoded, make sure to by Brett Cannon · 12 years ago
- 0ab5cf9 Issue #15181: importlib bytecode is unsigned and shouldn't have negative numbers. by Antoine Pitrou · 12 years ago
- 1edab78 Update test script to Visual Studio 2010. by Stefan Krah · 12 years ago
- fdaea06 Issue #15176: Clarified behavior, documentation, and implementation by Larry Hastings · 12 years ago
- 48986d6 Minor grammar refinement for hmac.compare_digest(). by Larry Hastings · 12 years ago
- db99dd0 Small wording update from Larry. by Georg Brandl · 12 years ago
- a1bc35f Improve hmac.compare_digest() docstring and documentation, courtesy of Larry H. by Georg Brandl · 12 years ago
- 39e810e Make the benchmark more fair for _decimal/decimal.py by setting context.prec by Stefan Krah · 12 years ago
- f787559 Whitespace cleanup. by Georg Brandl · 12 years ago
- 9dcbfc3 Remove unused variable. by Georg Brandl · 12 years ago
- 93b7d7e Fix a refleak in c82451eeb595. by Georg Brandl · 12 years ago
- 6cea655 Issue #15061: Re-implemented hmac.compare_digest() in C by Christian Heimes · 12 years ago
- 605a62d Issue #15118: Change return value of os.uname() and os.times() from by Larry Hastings · 12 years ago
- 306336b Closes #15161: add support for giving path as a fd for truncate() and pathconf(). by Georg Brandl · 12 years ago
- 78f0756 Speed up _decimal by another 10-15% by caching the thread local context by Stefan Krah · 12 years ago
- d60cd42 Issue #14815: Bugfix: the PyLong fed into the seed generator must be unsigned. by Larry Hastings · 12 years ago
- 49c15d4 Issue #14815: Use Py_ssize_t instead of long for the object hash, to by Larry Hastings · 12 years ago
- 990a5fe Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
- 5135992 Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
- b698d8e Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir" by Larry Hastings · 12 years ago
- 766a16e Fix test_re failure under Windows. by Antoine Pitrou · 12 years ago
- 5bb7aa9 Try to fix shutil.which() tests on Windows by fixing a typo introduced in 27f9c26fdd8b in posix_access(). by Georg Brandl · 12 years ago
- f8f5237 Remove useless test (flowinfo is unsigned). by Charles-François Natali · 12 years ago
- 9b0c006 Remove useless test (flowinfo is unsigned). by Charles-François Natali · 12 years ago
- dbbc0c8 Issue #14626: Fix buildbot issue on OpenIndiana 3.x machines. (Hopefully.) by Larry Hastings · 12 years ago
- 67cbf7b Issue #14626: Fix buildbot issue on x86 Tiger 3.x. by Larry Hastings · 12 years ago
- 9cf065c Issue #14626: Large refactoring of functions / parameters in the os module. by Larry Hastings · 12 years ago
- 3077ab8 Whitespace. by Stefan Krah · 12 years ago
- 93c9cd0 Issue #9527: tm_gmtoff has 'correct' sign. by Alexander Belopolsky · 12 years ago
- 5f6213b Merge by Antoine Pitrou · 12 years ago