1. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  2. 30589c9 Issue #10141: fix socketmodule compilation on Linux systems with <linux/can.h> by Charles-François Natali · 13 years ago
  3. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  4. 72ca65d Fix a Py_UCS4 / Py_UNICODE mixup. by Antoine Pitrou · 13 years ago
  5. 77ea640 Migrate the _csv module to the new unicode APIs by Antoine Pitrou · 13 years ago
  6. 17a332a fix compiler warnings by Benjamin Peterson · 13 years ago
  7. 47413c1 Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias by Charles-François Natali · 13 years ago
  8. 90c30e8 Remove now duplicate code in _json.c; instead, reuse the new private lib by Antoine Pitrou · 13 years ago
  9. 1d4bd25 Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  10. 45d9c91 Issue #3163: The struct module gets new format characters 'n' and 'N' by Antoine Pitrou · 13 years ago
  11. b619bb2 Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  12. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  13. e1335c7 Fix usage og PyUnicode_READY() by Victor Stinner · 13 years ago
  14. 061fe34 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  15. ed8ba14 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  16. 8e4dd08 Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  17. 1665d2c Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  18. b244d07 Fix compilation error under Windows by Antoine Pitrou · 13 years ago
  19. bf009f0 Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  20. 1e44fec Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  21. 75e78b6 Use the faulthandler module's infrastructure to write a GIL-less by Antoine Pitrou · 13 years ago
  22. 5a688db Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  23. ffd41d9 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  24. 29f43f7 Issue #12881: ctypes: Fix segfault with large structure field names. by Meador Inge · 13 years ago
  25. 1efb33a Issue #12881: ctypes: Fix segfault with large structure field names. by Meador Inge · 13 years ago
  26. 67002af Check error when calling PyUnicode_AppendAndDel() by Victor Stinner · 13 years ago
  27. a02a12c Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  28. d8c347a Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  29. 9e5bd6c pyexat uses the new Unicode API by Victor Stinner · 13 years ago
  30. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  31. 1fe99a2 Fix a compiler warning by Victor Stinner · 13 years ago
  32. 1fbcaef Fix array.array('u') constructor by Victor Stinner · 13 years ago
  33. eb5657a posix module catches PyUnicode_AsUnicode() failure by Victor Stinner · 13 years ago
  34. 8dba4e0 array module uses the new Unicode API by Victor Stinner · 13 years ago
  35. f8bb7d0 array module stores the typecode in a char, instead of Py_UNICODE by Victor Stinner · 13 years ago
  36. c806fdc raw_unicode_escape() uses the new Unicode API by Victor Stinner · 13 years ago
  37. 121aab4 Strip trailing spaces of _pickle.c by Victor Stinner · 13 years ago
  38. 6364927 PyLocale_strxfrm() uses the new Unicode API by Victor Stinner · 13 years ago
  39. fe9a861 fileio_init() checks for failure on conversion to Py_UNICODE* by Victor Stinner · 13 years ago
  40. 9624a76 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  41. 5a4a109 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  42. 2297066 Port normalization to new API. by Martin v. Löwis · 13 years ago
  43. f7b8cb6 _io.textio: fix character type, use Py_UCS4 instead of Py_UNICODE by Victor Stinner · 13 years ago
  44. 0058b86 _sre: don't use Py_UNICODE anymore by Victor Stinner · 13 years ago
  45. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  46. 7c8c1ea Fix whitespace. by Ezio Melotti · 13 years ago
  47. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 13 years ago
  48. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  49. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  50. 48d4949 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  51. b86ecf4 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  52. c7d93b7 Issue #1621: Fix undefined behaviour from signed overflow in datetime module hashes, array and list iterations, and get_integer (stringlib/string_format.h) by Mark Dickinson · 13 years ago
  53. 50203a6 Return +-Py_HUGE_VAL for tgamma(+-0) instead of risking FP exceptions by computing 1.0 / 0.0. by Mark Dickinson · 13 years ago
  54. dc863dd Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python. by Charles-François Natali · 13 years ago
  55. a61b053 Merge #12973 itertools fix. by Mark Dickinson · 13 years ago
  56. b2f6bc7 Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks Stefan Krah. by Mark Dickinson · 13 years ago
  57. 3454d52 merge 3.2 by Benjamin Peterson · 13 years ago
  58. adde86d fix compiler compliant about \0 not being an opcode by Benjamin Peterson · 13 years ago
  59. 41c98a3 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  60. 4507e64 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  61. 1c9f0c9 Issue #1172711: Add 'long long' support to the array module. by Meador Inge · 13 years ago
  62. 6fa6777 os.statvfs() encodes the filename to the filesystem encoding by Victor Stinner · 13 years ago
  63. b1e5d59 Issue #12517: Silence warning on windows buildbots (from 7fd80c61ddaa). by Ross Lagerwall · 13 years ago
  64. 9428d53 only compile xattrs on glibc (closes #12720) by Benjamin Peterson · 13 years ago
  65. b77fe17 Use xattr functions from sys/xattr.h instead of attr/xattr.h (closes #12720) by Benjamin Peterson · 13 years ago
  66. 65604b5 Merge 3.2: Issue #12483: ctypes: Fix a crash when the destruction of a callback by Amaury Forgeot d'Arc · 13 years ago
  67. bbe46d6 Issue #12483: ctypes: Fix a crash when the destruction of a callback by Amaury Forgeot d'Arc · 13 years ago
  68. 64d25dd Issue #12306: Add ZLIB_RUNTIME_VERSION to the zlib module. by Nadeem Vawda · 13 years ago
  69. ab7060e Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndiana by Jesus Cea · 13 years ago
  70. bbd8bec Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndiana by Jesus Cea · 13 years ago
  71. 54b0149 Typo by Jesus Cea · 13 years ago
  72. 9c82227 Yet another fix for #12763: test_posix failure on OpenIndiana by Jesus Cea · 13 years ago
  73. f2cb4e8 Close issue 12952: Solaris/Illumos (OpenIndiana) Scheduling policies by Jesus Cea · 13 years ago
  74. 9e3e70b Issue #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write by Larry Hastings · 13 years ago
  75. 3d5881e Issue #12909: Make PyLong_As* functions consistent in their use of exceptions. by Nadeem Vawda · 13 years ago
  76. 425fcd3 Issue #12929: faulthandler now uses char* for arithmetic on pointers by Victor Stinner · 13 years ago
  77. ea0d5fc Issue #12871: sched_get_priority_(min|max) might not be defined even though by Charles-François Natali · 13 years ago
  78. 388c0e2 merge heads by Benjamin Peterson · 13 years ago
  79. 6d8f744 merge 3.2 (#1616) by Benjamin Peterson · 13 years ago
  80. f22913b cast to getter by Benjamin Peterson · 13 years ago
  81. 71e44cb Issue #12567: Add curses.unget_wch() function by Victor Stinner · 13 years ago
  82. 9fd5374 merge 3.2 (#12878) by Benjamin Peterson · 13 years ago
  83. f6f3a35 add a __dict__ descr for IOBase (closes #12878) by Benjamin Peterson · 13 years ago
  84. 842d921 ctypes: Slightly better error message when a struct field name is not a string. by Amaury Forgeot d'Arc · 13 years ago
  85. 9b20e27 Merge from 3.2: Issue #12764: Fix a crash in ctypes when the name of a by Amaury Forgeot d'Arc · 13 years ago
  86. 02dd539 Issue #12764: Fix a crash in ctypes when the name of a Structure field is not by Amaury Forgeot d'Arc · 13 years ago
  87. 799bd80 expose linux extended file system attributes (closes #12720) by Benjamin Peterson · 13 years ago
  88. dd2f8b0 Merge from 3.2: by Amaury Forgeot d'Arc · 13 years ago
  89. faecc38 Issue #11241: subclasses of ctypes.Array can now be subclassed. by Amaury Forgeot d'Arc · 13 years ago
  90. 326e189 Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to by Amaury Forgeot d'Arc · 13 years ago
  91. a514eb9 Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in by Antoine Pitrou · 13 years ago
  92. 55549ec Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in by Antoine Pitrou · 13 years ago
  93. ee763e2 Issue #11564: Avoid crashes when trying to pickle huge objects or containers by Antoine Pitrou · 13 years ago
  94. 82be19f Issue #11564: Avoid crashes when trying to pickle huge objects or containers by Antoine Pitrou · 13 years ago
  95. 466517d Issue #12837: POSIX.1-2008 allows socklen_t to be a signed integer: re-enable by Charles-François Natali · 13 years ago
  96. ac7e9e0 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
  97. aa26b27 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
  98. 44c6ef5 Merge: #12839: Fix crash in zlib module due to version mismatch. by Nadeem Vawda · 13 years ago
  99. 524148a Issue #12839: Fix crash in zlib module due to version mismatch. by Nadeem Vawda · 13 years ago
  100. 4fd1e6a Issue #12803: SSLContext.load_cert_chain() now accepts a password argument by Antoine Pitrou · 13 years ago