1. 50ea456 Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. by Martin v. Löwis · 15 years ago
  2. bcfaf80 Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning by Antoine Pitrou · 15 years ago
  3. 889d9645 Issue #7228: Fix format mismatch when printing something of type off_t. by Mark Dickinson · 15 years ago
  4. 8b2d713 Issue 7128: Removed reference to the non-existent copyreg module. by Alexandre Vassalotti · 15 years ago
  5. c4920e8 Issue #7272: Add configure test to detect whether sem_open works by Mark Dickinson · 15 years ago
  6. 9eac119 Fix docstrings for itertools combinatoric functions. by Raymond Hettinger · 15 years ago
  7. 82864d1 Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, by Mark Dickinson · 15 years ago
  8. 323b9da Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent by Antoine Pitrou · 15 years ago
  9. efc2858 #7259: show correct equivalent for operator.i* operations in docstring; fix minor issues in operator docs. by Georg Brandl · 15 years ago
  10. fa7dadd Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 15 years ago
  11. e50efaa Buffered I/O: optimize lock taking in the common non-contended case. by Antoine Pitrou · 15 years ago
  12. b2b92ea Define TCSASOFT if the flag exists. by Gregory P. Smith · 15 years ago
  13. 2c970a2 Remove official documentation entry for thread._count() and make the by Antoine Pitrou · 15 years ago
  14. 59c44f3 Issue #7222: Make thread "reaping" more reliable so that reference by Antoine Pitrou · 15 years ago
  15. a8f8bed2 Use a single style for all the docstrings in the math module. by Georg Brandl · 15 years ago
  16. 40777e6 Use the correct function name in docstring. by Georg Brandl · 15 years ago
  17. 3ddb527 Roll back ill-considered attempts to fix printf specifier mismatch for off_t. by Mark Dickinson · 15 years ago
  18. 129c97d Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in _json.c as part of short float repr. Change made after consulting with Bob Ippolito. This completes the removal of calls to PyOS_ascii_strtod. by Eric Smith · 15 years ago
  19. e848693 Fix format specifier for MSVC by Mark Dickinson · 15 years ago
  20. 791181b Replace long long with PY_LONG_LONG by Mark Dickinson · 15 years ago
  21. bf1039d Silence gcc warnings when trying to print an off_t using "lld", on platforms by Mark Dickinson · 15 years ago
  22. dd62966 Issue #7205: Fix a possible deadlock when using a BZ2File object from several threads at once. by Antoine Pitrou · 15 years ago
  23. b53e1a6 Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in stropmodule as part of short float repr. by Eric Smith · 15 years ago
  24. 97be1ca Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in cPickle as part of short float repr. by Eric Smith · 15 years ago
  25. e052b64 Use correct conversion specifier and length modifier when printing an by Mark Dickinson · 15 years ago
  26. d9ff74e Some platforms have rl_completion_append_character but not rl_completion_suppress_append. by Antoine Pitrou · 15 years ago
  27. b05d3be Continue removing _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 15 years ago
  28. 5e9f667 Fix compilation error in debug mode. by Antoine Pitrou · 15 years ago
  29. f7820c1 Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept arbitrary keywords by Antoine Pitrou · 15 years ago
  30. fa94e80 Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and io.StringIO picklable. by Antoine Pitrou · 15 years ago
  31. f98a267 Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of io.StringIO and io.BytesIO by Antoine Pitrou · 15 years ago
  32. efb60c0 Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which by Antoine Pitrou · 15 years ago
  33. 119cdef Issue #5833: Fix extra space character in readline completion with the by Antoine Pitrou · 15 years ago
  34. 5ba8491 Issue #7133: SSL objects now support the new buffer API. by Antoine Pitrou · 15 years ago
  35. e363b14 Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in test___all__. by Georg Brandl · 15 years ago
  36. 973f8b4 Make cPickle.Unpickler.noload() handle dict subclasses. noload() is by Neil Schemenauer · 15 years ago
  37. 3d83082 Issue #7078: _struct.__doc__ was being ignored. Import it into struct. by Mark Dickinson · 15 years ago
  38. d0052d1 #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, by Amaury Forgeot d'Arc · 15 years ago
  39. 3de4647 Fix compilation warning on Windows, where size_t is 32bit but file offsets are 64bit. by Amaury Forgeot d'Arc · 15 years ago
  40. dbf3b25 #6990: clear threading.local's key only after its thread state is removed: by Philip Jenvey · 15 years ago
  41. b93fff0 Issue #3366: Add gamma function to math module. by Mark Dickinson · 15 years ago
  42. 716a9cc Eliminate unnecessary get_wrapped_(u)long defines in struct module. by Mark Dickinson · 15 years ago
  43. b49e53e #6243: fix segfault when keyname() returns a NULL pointer. by Andrew M. Kuchling · 15 years ago
  44. 2fcd03b http://bugs.python.org/issue6971 by Kristján Valur Jónsson · 15 years ago
  45. 6ef9fd7 Fix whitespace. by Brett Cannon · 15 years ago
  46. 4d94743 When range checking was added to time.strftime() a check was placed on tm_isdst by Brett Cannon · 15 years ago
  47. 2a46658 Issue #6236, #6348: Fix various failures in the io module under AIX by Antoine Pitrou · 15 years ago
  48. 16766d7 Merge a newer version of libffi_osx, based on the by Ronald Oussoren · 15 years ago
  49. 9f20d9d Issue 6877: this patch makes it possible to link the readline extension by Ronald Oussoren · 15 years ago
  50. d25fb2f Remove unused variable and static function to fix compiler warnings. by Thomas Heller · 15 years ago
  51. ab84989 #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple. by Georg Brandl · 15 years ago
  52. 6be522b Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...) by Thomas Heller · 15 years ago
  53. 7a352c0 Issue #5042: Structure sub-subclass does now initialize correctly with by Thomas Heller · 15 years ago
  54. 4676048 Remove outdated include; this include was breaking OS X builds using by Mark Dickinson · 15 years ago
  55. c4dcb38 Fix issue #1590864, multiple threads and fork() can cause deadlocks, by by Thomas Wouters · 15 years ago
  56. 8246968 tabbify by Benjamin Peterson · 15 years ago
  57. 7f6d083 #6865 fix ref counting in initialization of pwd module by Benjamin Peterson · 15 years ago
  58. 81809a4 Make ctypes compile again with older Python versions. by Thomas Heller · 15 years ago
  59. fff896b #6750: TextIOWrapped could duplicate output when several threads write to it. by Amaury Forgeot d'Arc · 15 years ago
  60. 4e63d54 Add weakref support to the thread.lock type. by Gregory P. Smith · 15 years ago
  61. 764465f Expat could crash if given the wrong kind of input by never stopping its by Brett Cannon · 15 years ago
  62. c4ad034 Fix issue1628205: Socket file objects returned by socket.socket.makefile() now by Gregory P. Smith · 15 years ago
  63. f466642 comment typo fix by Gregory P. Smith · 15 years ago
  64. 20e1f93 Issue #6629: Fix a data corruption issue in the new `io` package, which could by Antoine Pitrou · 15 years ago
  65. 8d5a652 Issue #6644: Fix compile error on AIX. by Mark Dickinson · 15 years ago
  66. 8fdab95 Issue 6637: defaultdict.copy() failed with an empty factory. by Raymond Hettinger · 15 years ago
  67. fe67bd9 Issue #6561: '\d' regular expression should not match characters of by Mark Dickinson · 15 years ago
  68. 74b3016 #6553: crash in cPickle.load(), when given a StringIO with incomplete data. by Amaury Forgeot d'Arc · 15 years ago
  69. d8431ae Revert rev 74134, as it does not completely fixx issue #6493. by Thomas Heller · 15 years ago
  70. 6adda96 Issue #6493: Fix a ctypes problem setting bitfields more than 31 bits wide. by Thomas Heller · 15 years ago
  71. 0b5b8af Fix GCC warning about fprintf used without a string literal and by Alexandre Vassalotti · 15 years ago
  72. 6d78736 Initialize variables in PyCurses_getsyx() to avoid compiler warnings. by Alexandre Vassalotti · 15 years ago
  73. d77faaf #5910: fix kqueue for calls with more than one event. by Georg Brandl · 15 years ago
  74. 999ecc0 Issue #2389: Pickle array objects using a list representation for portability by Alexandre Vassalotti · 15 years ago
  75. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 15 years ago
  76. 5fd3af2 Issue #1523: Remove deprecated overflow masking in struct module, and by Mark Dickinson · 15 years ago
  77. 24766ba Typo in error message by Mark Dickinson · 15 years ago
  78. e93eee7 #6420: Fix a compilation warning in the nis module, for OpenBSD and FreeBSD. by Amaury Forgeot d'Arc · 15 years ago
  79. 463dc4b Issues #1530559, #1741130: Fix various inconsistencies in struct.pack by Mark Dickinson · 15 years ago
  80. 0fe7991 Issue 2370: Add Python 3 warnings for the removal of operator.isCallable and by Alexandre Vassalotti · 15 years ago
  81. 9d36fd2 Adds the select.PIPE_BUF attribute to expose the system constant. by Gregory P. Smith · 15 years ago
  82. 8693214 multiprocessing doesn't compile in Solaris because a typo by Jesus Cea · 15 years ago
  83. 8839fd7 Issue #6344: Fixed a crash of mmap.read() when passed a negative argument. by Hirokazu Yamamoto · 15 years ago
  84. bcff47a Issue #4856: Py_GetFileAttributesEx[AW] are not needed because GetFileAttributesEx[AW] by Hirokazu Yamamoto · 15 years ago
  85. a3c5609 Issue #4856: Remove checks for win NT. by Hirokazu Yamamoto · 15 years ago
  86. ca69bb9 Fix a compilation warning on Windows by Amaury Forgeot d'Arc · 15 years ago
  87. 0115e09 Issue 6305: Clarify error message for large arguments to itertools.islice(). by Raymond Hettinger · 15 years ago
  88. 94819cf remove some unused symtable constants by Benjamin Peterson · 15 years ago
  89. 9f7baec backport r73430 by Benjamin Peterson · 15 years ago
  90. 983a465 Issue #6271: mmap tried to close invalid file handle (-1) when annonymous. by Hirokazu Yamamoto · 15 years ago
  91. 1969059 Issue #6215: backport the 3.1 io lib by Antoine Pitrou · 15 years ago
  92. 1672dc6 Fix signed/unsigned compiler warning. by Raymond Hettinger · 15 years ago
  93. e021c9c backport r73268 by Benjamin Peterson · 15 years ago
  94. 4f16d3b Issue #4873: Fix resource leaks in error cases of pwd and grp. by Martin v. Löwis · 15 years ago
  95. 7937d93 Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g by Jeffrey Yasskin · 15 years ago
  96. 57bef68 Issue 5794: fix cPickle's unpickling of recursive tuples. by Collin Winter · 15 years ago
  97. 944f684 Allow multiple context managers in one with statement, as proposed by Georg Brandl · 15 years ago
  98. 7285a26 fix error handling by Benjamin Peterson · 15 years ago
  99. 179bf21 Issue 5670: special-case pickling of dicts. This nearly doubles the performance of dict pickling in cPickle. by Collin Winter · 15 years ago
  100. a7724e5 stop using Py_FindMethod by Benjamin Peterson · 15 years ago