1. 7d637ab Complete What's New in 3.3 about PEP 393 by Victor Stinner · 13 years ago
  2. f503673 Move UCS4-specific tests with the "normal" tests. by Ezio Melotti · 13 years ago
  3. dfb866d Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an array by Victor Stinner · 13 years ago
  4. 2bdc7f5 Move code related to compile from Python.h to compile.h by Victor Stinner · 13 years ago
  5. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  6. b9dcffb Fix 'c' format of PyUnicode_Format() by Victor Stinner · 13 years ago
  7. c17f540 Oops, fix my previous commit: unicode => to by Victor Stinner · 13 years ago
  8. b15d4d8 PyUnicode_CopyCharacters() marks the string as dirty (reset the hash) by Victor Stinner · 13 years ago
  9. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago
  10. 7c8c1ea Fix whitespace. by Ezio Melotti · 13 years ago
  11. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 13 years ago
  12. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 13 years ago
  13. 506f592 Check size of wchar_t using the preprocessor by Victor Stinner · 13 years ago
  14. 73f01c6 PyUnicode_CopyCharacters() initializes overflow by Victor Stinner · 13 years ago
  15. e57b1c0 Mark PyUnicode_FromUCS[124] as private by Victor Stinner · 13 years ago
  16. ff9e50f Oops, fix Py_MIN/Py_MAX case by Victor Stinner · 13 years ago
  17. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 13 years ago
  18. fd85c3a fill_number() and format_string_internal() check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  19. dba2dee fill_number() ensures that the 'digits' string is ready by Victor Stinner · 13 years ago
  20. afbaa20 fill_char() can now propagate an error by Victor Stinner · 13 years ago
  21. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 13 years ago
  22. 6c7a52a Check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  23. be78eaf PyUnicode_CopyCharacters() checks for buffer and character overflow by Victor Stinner · 13 years ago
  24. fb5f5f2 Mark PyUnicode_CONVERT_BYTES as private by Victor Stinner · 13 years ago
  25. ee12f44 Add versionadded directive to new API function. by Georg Brandl · 13 years ago
  26. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  27. 5ce1b0d Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4, instead of Py_UNICODE by Victor Stinner · 13 years ago
  28. e56717c merge heads by Benjamin Peterson · 13 years ago
  29. 19f6260 this isn't fixed on windows yet... by Benjamin Peterson · 13 years ago
  30. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  31. a6e50f5 this test works as expected now by Benjamin Peterson · 13 years ago
  32. e28544a revert unintended change by Benjamin Peterson · 13 years ago
  33. 9c6e6a0 don't check that the first character is XID_Continue by Benjamin Peterson · 13 years ago
  34. d83f226 test_ctypes: Windows is no more a special case by Victor Stinner · 13 years ago
  35. 287eca6 Fix struct sizes. Drop -1, since the resulting string was actually the largest one by Martin v. Löwis · 13 years ago
  36. f02aa65 Use compile() instead of eval(). by Martin v. Löwis · 13 years ago
  37. 0c9fe4d Use eval instead of codecs.lookup to trigger UTF-8 generation. by Martin v. Löwis · 13 years ago
  38. 418170c ACKS for PEP 393. by Martin v. Löwis · 13 years ago
  39. 24fa983 Update for PEP 393. by Martin v. Löwis · 13 years ago
  40. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  41. 48d4949 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  42. b86ecf4 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  43. f0c51fa Fix markup. by Georg Brandl · 13 years ago
  44. 91ef21f merged by Martin v. Löwis · 13 years ago
  45. 6fb4472 Depend setobject.o and dictobject.o on stringlib/eq.h. by Martin v. Löwis · 13 years ago
  46. 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
  47. 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
  48. 36f27c9 Issue #1621: Fix undefined behaviour from signed overflow in get_integer (stringlib/formatter.h) by Mark Dickinson · 13 years ago
  49. dc863dd Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python. by Charles-François Natali · 13 years ago
  50. 57e683e Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple.__hash__, frozenset.__hash__ and set indexing operations. by Mark Dickinson · 13 years ago
  51. 0390151 Fix typo in comment: _PyHash_Double -> _Py_HashDouble. by Mark Dickinson · 13 years ago
  52. 0d5f6ad Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.splitlines, bytes.splitlines and bytearray.splitlines. by Mark Dickinson · 13 years ago
  53. a61b053 Merge #12973 itertools fix. by Mark Dickinson · 13 years ago
  54. b2f6bc7 Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks Stefan Krah. by Mark Dickinson · 13 years ago
  55. 3454d52 merge 3.2 by Benjamin Peterson · 13 years ago
  56. adde86d fix compiler compliant about \0 not being an opcode by Benjamin Peterson · 13 years ago
  57. 7ddbf10 disable unused result warnings when possible by Benjamin Peterson · 13 years ago
  58. a1fe1f8 Merge 3.2: Issue #7732: Don't open a directory as a file anymore while by Victor Stinner · 13 years ago
  59. 53ffdc5 Issue #7732: Don't open a directory as a file anymore while importing a by Victor Stinner · 13 years ago
  60. 92c144e Merge 3.2: Issue #12931: Add a test with Unicode URI to test_xmlrpc by Victor Stinner · 13 years ago
  61. da6eb53 Issue #12931: Add a test with Unicode URI to test_xmlrpc by Victor Stinner · 13 years ago
  62. 9089b79 Fix a race condition in test_socket.ThreadableTest: the client is reported by Charles-François Natali · 13 years ago
  63. a49ed76 Fix a race condition in test_socket.ThreadableTest: the client is reported as by Charles-François Natali · 13 years ago
  64. 85579b8 merge 3.2. Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation. by Senthil Kumaran · 13 years ago
  65. 17dac4c Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation. by Senthil Kumaran · 13 years ago
  66. 472d280 Issue #13002: Fix Visual Studio warning (not enough actual parameters). by Stefan Krah · 13 years ago
  67. fba2b6b Issue #12981: test_multiprocessing: catch ImportError when importing by Charles-François Natali · 13 years ago
  68. e51c8da Issue #12981: test_multiprocessing: catch ImportError when importing by Charles-François Natali · 13 years ago
  69. 9c0cccf Branch merge by Éric Araujo · 13 years ago
  70. dd2d55c Remove two unneeded attributes in packaging by Éric Araujo · 13 years ago
  71. c5dbb3d Issue #1172711: Update What's New in Python 3.3 document for the array module. by Meador Inge · 13 years ago
  72. 41c98a3 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  73. 4507e64 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  74. c78fb33 What's New in Python 3.3: add curses.unget_wch() by Victor Stinner · 13 years ago
  75. 9415afc meth.log2 doc: add a link to int.bit_length() by Victor Stinner · 13 years ago
  76. 811db3b Issue #1172711: Update What's New in Python 3.3 document for the struct module by Victor Stinner · 13 years ago
  77. 1c9f0c9 Issue #1172711: Add 'long long' support to the array module. by Meador Inge · 13 years ago
  78. 4ad6ed7 Merge 3.2: test_multiprocessing removes temporary files by Victor Stinner · 13 years ago
  79. d0b10a6 test_multiprocessing removes temporary files by Victor Stinner · 13 years ago
  80. c61fae04 Merge 3.2: test_httplib removes temporary files by Victor Stinner · 13 years ago
  81. 18d15cb test_httplib removes temporary files by Victor Stinner · 13 years ago
  82. 8ed6fa1 Head merge by Barry Warsaw · 13 years ago
  83. a80b14c - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  84. 916048d - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  85. bc8f082 Issue #12981: test_multiprocessing: catch ImportError when importing by Charles-François Natali · 13 years ago
  86. 225aa4f Issue #12996: multiprocessing.connection: transmit the header in network byte by Charles-François Natali · 13 years ago
  87. 6fa6777 os.statvfs() encodes the filename to the filesystem encoding by Victor Stinner · 13 years ago
  88. 4c0b707 Squash last tempdir leak in packaging tests. by Éric Araujo · 13 years ago
  89. 8f53d09 Merge issue #12973 list_repeat fix. by Mark Dickinson · 13 years ago
  90. c0420fd Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat. by Mark Dickinson · 13 years ago
  91. a372de8 Close #13007: whichdb should recognize gdbm 1.9 magic numbers by Jesus Cea · 13 years ago
  92. bc566b0 Close #13007: whichdb should recognize gdbm 1.9 magic numbers by Jesus Cea · 13 years ago
  93. 1cbd2ab Avoid matching '' or 'yn' when asking for 'y' or 'n' in interactive code by Éric Araujo · 13 years ago
  94. becf1c5 Branch merge by Éric Araujo · 13 years ago
  95. 2496f33 Close issue 12958 by flagging expected failures in test_socket on Mac OS X by Nick Coghlan · 13 years ago
  96. b1e5d59 Issue #12517: Silence warning on windows buildbots (from 7fd80c61ddaa). by Ross Lagerwall · 13 years ago
  97. 28df8de Make regrtest look at internal dicts in sysconfig. by Éric Araujo · 13 years ago
  98. 505f0eb Final bag of small changes coming from distutils2. by Éric Araujo · 13 years ago
  99. c1b7e7f A few style changes originally done in the distutils2 repo by Éric Araujo · 13 years ago
  100. f30b5ae Replace cmp function with key function by Éric Araujo · 13 years ago