1. d840e51 Issue #4772: Raise a ValueError when an unknown Bluetooth protocol is by Antoine Pitrou · 14 years ago
  2. 526e421 Issue #7385: Fix a crash in `MemoryView_FromObject` when by Antoine Pitrou · 14 years ago
  3. f3fa074 - Issue #6939: Fix file I/O objects in the `io` module to keep the original by Antoine Pitrou · 14 years ago
  4. 46bff79 be robust against test being run over and over (such as -R) by Benjamin Peterson · 15 years ago
  5. a04ae01 move test outside WITH_THREAD section by Benjamin Peterson · 15 years ago
  6. a36507c Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a by Mark Dickinson · 15 years ago
  7. 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 15 years ago
  8. 0d948ac - Expat: Fix DoS via XML document with malformed UTF-8 sequences by Matthias Klose · 15 years ago
  9. 6b35730 Do not compile stubs for the sha2 series hashes in the openssl hashlib by Gregory P. Smith · 15 years ago
  10. a55af9a - Issue #7658: Ensure that the new pythonw executable works on OSX 10.4 by Ronald Oussoren · 15 years ago
  11. db983a7 Followup to #7703: a2b_hqx() didn't follow the new buffer API (neither in trunk by Antoine Pitrou · 15 years ago
  12. c391ad0 Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a by Antoine Pitrou · 15 years ago
  13. efdddd3 Issue #3299: Fix possible crash in the _sre module when given bad by Antoine Pitrou · 15 years ago
  14. fd3a60d Issue #7703: Add support for the new buffer API to functions of the by Antoine Pitrou · 15 years ago
  15. 8c510e7 Issue #7661: Allow ctypes to be built from a non-ASCII directory path. by Antoine Pitrou · 15 years ago
  16. b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 15 years ago
  17. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 15 years ago
  18. 8015725 Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles by Antoine Pitrou · 15 years ago
  19. 0d423b8 Issue #7455: Fix possible crash in cPickle on invalid input. Patch by by Antoine Pitrou · 15 years ago
  20. 3b18ff7 remove an obsolete file that should've gone with r77252 by Gregory P. Smith · 15 years ago
  21. f132c16 Make use of PyLong_AsLongAndOverflow in math_ldexp. by Mark Dickinson · 15 years ago
  22. 443ec68 Issue #3745: Undo the requirement for new buffer API only objects to be passed by Gregory P. Smith · 15 years ago
  23. d3e3232 Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDouble by Mark Dickinson · 15 years ago
  24. 8cdc9bc More yearly updates. by Georg Brandl · 15 years ago
  25. aac4df6 #7613: missing ) in flmodule.c by Ezio Melotti · 15 years ago
  26. 8645a5c #7413: Passing '\0' as the separator to datetime.datetime.isoformat() by Amaury Forgeot d'Arc · 15 years ago
  27. fa1ffb6 #7595: fix typo in argument default constant. by Georg Brandl · 15 years ago
  28. 740cdc3 #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring. by Georg Brandl · 15 years ago
  29. 2401c03 Fix a typo in comment by Amaury Forgeot d'Arc · 15 years ago
  30. 9f12d46 Fix possible integer overflow in lchown and fchown functions. For issue1747858. by Gregory P. Smith · 15 years ago
  31. 1730fdc Inverse hyperbolic trigonometric functions should call m_log1p, not log1p. by Mark Dickinson · 15 years ago
  32. 12748b0 Issue #7518: Move substitute definitions of C99 math functions from by Mark Dickinson · 15 years ago
  33. bd335bf Additional edge-case tests for test_long_and_overflow. by Mark Dickinson · 15 years ago
  34. ed02b3f Fix reference counts for test_long_and_overflow. by Mark Dickinson · 15 years ago
  35. e31d300 Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. by Mark Dickinson · 15 years ago
  36. b5e348b Add missing tests for PyArg_Parse* with format 'h' by Mark Dickinson · 15 years ago
  37. 5698977 math.factorial depends on PyLong_AsLong correctly converting floats; rewrite by Mark Dickinson · 15 years ago
  38. e812d29 Issue #7545: improve documentation of the `buffering` argument in io.open(). by Antoine Pitrou · 15 years ago
  39. 5ff37ae Issue #3366: Add error function and complementary error function to math module. by Mark Dickinson · 15 years ago
  40. 9cae178 Issue #3366: Add expm1 function to math module. Thanks Eric Smith for by Mark Dickinson · 15 years ago
  41. 001e4a6 add a test of loading the datetime capi by Benjamin Peterson · 15 years ago
  42. aef1899 remove unused variable by Benjamin Peterson · 15 years ago
  43. ddd392c accept None as the same as having passed no argument in file types #7349 by Benjamin Peterson · 15 years ago
  44. 9be87bc Issue #3366: Add lgamma function to math module. by Mark Dickinson · 15 years ago
  45. a5fd24e Add a reverse() method to collections.deque(). by Raymond Hettinger · 15 years ago
  46. 0b3263b Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) by Raymond Hettinger · 15 years ago
  47. 187177f Issue #6986: Fix crash in the JSON C accelerator when called with the by Antoine Pitrou · 15 years ago
  48. 30b3b35 Issue #7333: The `posix` module gains an `initgroups()` function providing by Antoine Pitrou · 15 years ago
  49. d728871 #7419: Fix a crash on Windows in locale.setlocale() when the category by Amaury Forgeot d'Arc · 15 years ago
  50. 9b4197b Handle step values other than one. by Raymond Hettinger · 15 years ago
  51. e09f45a Issue 7410: deepcopy of itertools.count resets the count by Raymond Hettinger · 15 years ago
  52. 5afa6d4 Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORES by Mark Dickinson · 15 years ago
  53. 50ea456 Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. by Martin v. Löwis · 15 years ago
  54. bcfaf80 Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning by Antoine Pitrou · 15 years ago
  55. 889d9645 Issue #7228: Fix format mismatch when printing something of type off_t. by Mark Dickinson · 15 years ago
  56. 8b2d713 Issue 7128: Removed reference to the non-existent copyreg module. by Alexandre Vassalotti · 15 years ago
  57. c4920e8 Issue #7272: Add configure test to detect whether sem_open works by Mark Dickinson · 15 years ago
  58. 9eac119 Fix docstrings for itertools combinatoric functions. by Raymond Hettinger · 15 years ago
  59. 82864d1 Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, by Mark Dickinson · 15 years ago
  60. 323b9da Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent by Antoine Pitrou · 15 years ago
  61. efc2858 #7259: show correct equivalent for operator.i* operations in docstring; fix minor issues in operator docs. by Georg Brandl · 15 years ago
  62. fa7dadd Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 15 years ago
  63. e50efaa Buffered I/O: optimize lock taking in the common non-contended case. by Antoine Pitrou · 15 years ago
  64. b2b92ea Define TCSASOFT if the flag exists. by Gregory P. Smith · 15 years ago
  65. 2c970a2 Remove official documentation entry for thread._count() and make the by Antoine Pitrou · 15 years ago
  66. 59c44f3 Issue #7222: Make thread "reaping" more reliable so that reference by Antoine Pitrou · 15 years ago
  67. a8f8bed2 Use a single style for all the docstrings in the math module. by Georg Brandl · 15 years ago
  68. 40777e6 Use the correct function name in docstring. by Georg Brandl · 15 years ago
  69. 3ddb527 Roll back ill-considered attempts to fix printf specifier mismatch for off_t. by Mark Dickinson · 15 years ago
  70. 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
  71. e848693 Fix format specifier for MSVC by Mark Dickinson · 15 years ago
  72. 791181b Replace long long with PY_LONG_LONG by Mark Dickinson · 15 years ago
  73. bf1039d Silence gcc warnings when trying to print an off_t using "lld", on platforms by Mark Dickinson · 15 years ago
  74. dd62966 Issue #7205: Fix a possible deadlock when using a BZ2File object from several threads at once. by Antoine Pitrou · 15 years ago
  75. 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
  76. 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
  77. e052b64 Use correct conversion specifier and length modifier when printing an by Mark Dickinson · 15 years ago
  78. d9ff74e Some platforms have rl_completion_append_character but not rl_completion_suppress_append. by Antoine Pitrou · 15 years ago
  79. b05d3be Continue removing _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 15 years ago
  80. 5e9f667 Fix compilation error in debug mode. by Antoine Pitrou · 15 years ago
  81. f7820c1 Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept arbitrary keywords by Antoine Pitrou · 15 years ago
  82. fa94e80 Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and io.StringIO picklable. by Antoine Pitrou · 15 years ago
  83. f98a267 Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of io.StringIO and io.BytesIO by Antoine Pitrou · 15 years ago
  84. efb60c0 Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which by Antoine Pitrou · 15 years ago
  85. 119cdef Issue #5833: Fix extra space character in readline completion with the by Antoine Pitrou · 15 years ago
  86. 5ba8491 Issue #7133: SSL objects now support the new buffer API. by Antoine Pitrou · 15 years ago
  87. e363b14 Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in test___all__. by Georg Brandl · 15 years ago
  88. 973f8b4 Make cPickle.Unpickler.noload() handle dict subclasses. noload() is by Neil Schemenauer · 15 years ago
  89. 3d83082 Issue #7078: _struct.__doc__ was being ignored. Import it into struct. by Mark Dickinson · 15 years ago
  90. d0052d1 #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, by Amaury Forgeot d'Arc · 15 years ago
  91. 3de4647 Fix compilation warning on Windows, where size_t is 32bit but file offsets are 64bit. by Amaury Forgeot d'Arc · 15 years ago
  92. dbf3b25 #6990: clear threading.local's key only after its thread state is removed: by Philip Jenvey · 15 years ago
  93. b93fff0 Issue #3366: Add gamma function to math module. by Mark Dickinson · 15 years ago
  94. 716a9cc Eliminate unnecessary get_wrapped_(u)long defines in struct module. by Mark Dickinson · 15 years ago
  95. b49e53e #6243: fix segfault when keyname() returns a NULL pointer. by Andrew M. Kuchling · 15 years ago
  96. 2fcd03b http://bugs.python.org/issue6971 by Kristján Valur Jónsson · 15 years ago
  97. 6ef9fd7 Fix whitespace. by Brett Cannon · 15 years ago
  98. 4d94743 When range checking was added to time.strftime() a check was placed on tm_isdst by Brett Cannon · 15 years ago
  99. 2a46658 Issue #6236, #6348: Fix various failures in the io module under AIX by Antoine Pitrou · 15 years ago
  100. 16766d7 Merge a newer version of libffi_osx, based on the by Ronald Oussoren · 15 years ago