1. 202b62b PyUnicode_FromKindAndData() raises a ValueError if the kind is unknown by Victor Stinner · 14 years ago
  2. 07ac3eb Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_t by Victor Stinner · 14 years ago
  3. e90fe6a Add _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() macros by Victor Stinner · 14 years ago
  4. 0b1d348 Issue 13085: Fix some memory leaks. Patch by Stefan Krah. by Martin v. Löwis · 14 years ago
  5. 5c0fb00 merge heads by Benjamin Peterson · 14 years ago
  6. 31616ea remove reference to non-existent file by Benjamin Peterson · 14 years ago
  7. de636f3 PyUnicode_Substring() now accepts end bigger than string length by Victor Stinner · 14 years ago
  8. c759f3e Ooops, avoid a division by zero in unicode_repeat() by Victor Stinner · 14 years ago
  9. d3a83d5 PyUnicode_FromObject() ensures that its output is a ready string by Victor Stinner · 14 years ago
  10. 67ca64c I want a super fast 'a' * n! by Victor Stinner · 14 years ago
  11. e9a2935 Fix usage of PyUnicode_READY in unicodeobject.c by Victor Stinner · 14 years ago
  12. 12bab6d Remove private substring() function, reuse public PyUnicode_Substring() by Victor Stinner · 14 years ago
  13. c841e7d Optimize PyUnicode_Copy(): don't recompute maximum character by Victor Stinner · 14 years ago
  14. 2219e0a PyUnicode_FromObject() reuses PyUnicode_Copy() by Victor Stinner · 14 years ago
  15. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 14 years ago
  16. b153615 PyUnicode_CopyCharacters() uses exceptions instead of assertions by Victor Stinner · 14 years ago
  17. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 14 years ago
  18. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 14 years ago
  19. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 14 years ago
  20. 6430fd5 Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE by Victor Stinner · 14 years ago
  21. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 14 years ago
  22. b9dcffb Fix 'c' format of PyUnicode_Format() by Victor Stinner · 14 years ago
  23. c17f540 Oops, fix my previous commit: unicode => to by Victor Stinner · 14 years ago
  24. b15d4d8 PyUnicode_CopyCharacters() marks the string as dirty (reset the hash) by Victor Stinner · 14 years ago
  25. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 14 years ago
  26. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 14 years ago
  27. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 14 years ago
  28. 506f592 Check size of wchar_t using the preprocessor by Victor Stinner · 14 years ago
  29. 73f01c6 PyUnicode_CopyCharacters() initializes overflow by Victor Stinner · 14 years ago
  30. e57b1c0 Mark PyUnicode_FromUCS[124] as private by Victor Stinner · 14 years ago
  31. ff9e50f Oops, fix Py_MIN/Py_MAX case by Victor Stinner · 14 years ago
  32. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 14 years ago
  33. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 14 years ago
  34. 6c7a52a Check for PyUnicode_CopyCharacters() failure by Victor Stinner · 14 years ago
  35. be78eaf PyUnicode_CopyCharacters() checks for buffer and character overflow by Victor Stinner · 14 years ago
  36. fb5f5f2 Mark PyUnicode_CONVERT_BYTES as private by Victor Stinner · 14 years ago
  37. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 14 years ago
  38. 9c6e6a0 don't check that the first character is XID_Continue by Benjamin Peterson · 14 years ago
  39. d63a3b8 Implement PEP 393. by Martin v. Löwis · 14 years ago
  40. 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 · 14 years ago
  41. 36f27c9 Issue #1621: Fix undefined behaviour from signed overflow in get_integer (stringlib/formatter.h) by Mark Dickinson · 14 years ago
  42. 57e683e Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple.__hash__, frozenset.__hash__ and set indexing operations. by Mark Dickinson · 14 years ago
  43. 0d5f6ad Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.splitlines, bytes.splitlines and bytearray.splitlines. by Mark Dickinson · 14 years ago
  44. 8f53d09 Merge issue #12973 list_repeat fix. by Mark Dickinson · 14 years ago
  45. c0420fd Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat. by Mark Dickinson · 14 years ago
  46. 2d78a87 Merge fix for issue #12963. by Stefan Krah · 14 years ago
  47. b77c6c6 Issue #12963: PyLong_AsSize_t() now returns (size_t)-1 in all error cases. by Stefan Krah · 14 years ago
  48. 3d5881e Issue #12909: Make PyLong_As* functions consistent in their use of exceptions. by Nadeem Vawda · 14 years ago
  49. f955eb2 Merge 3.2: Fix PyUnicode_AsWideCharString() doc by Victor Stinner · 14 years ago
  50. d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 14 years ago
  51. e35dc51 merge 3.2 by Benjamin Peterson · 14 years ago
  52. eff61f6 make sure to initialize the method wrapper type by Benjamin Peterson · 14 years ago
  53. 6f2a683 #9200: merge with 3.2. by Ezio Melotti · 14 years ago
  54. 93e7afc #9200: The str.is* methods now work with strings that contain non-BMP characters even in narrow Unicode builds. by Ezio Melotti · 14 years ago
  55. 8fd544f Issue #12791: Break reference cycles early when a generator exits with an exception. by Antoine Pitrou · 14 years ago
  56. a370fcf Issue #12791: Break reference cycles early when a generator exits with an exception. by Antoine Pitrou · 14 years ago
  57. e518d4c merge 3.2 by Benjamin Peterson · 14 years ago
  58. 7a6b44a the named of the character is actually NUL by Benjamin Peterson · 14 years ago
  59. 020340f merge 3.2 by Benjamin Peterson · 14 years ago
  60. 5ad517a NUL -> NULL by Benjamin Peterson · 14 years ago
  61. 01fc6cd make __doc__ mutable on heaptypes (closes #12773) by Benjamin Peterson · 14 years ago
  62. d9f23d2 factor out common checks for setting special type attributes by Benjamin Peterson · 14 years ago
  63. d17cefc crush other possible refleaks in this section by Benjamin Peterson · 14 years ago
  64. 3e6267e merge 3.2 by Benjamin Peterson · 14 years ago
  65. ae13c88 fix possible refleaks by Benjamin Peterson · 14 years ago
  66. c4085c8 complain when a class variable shadows a name in __slots__ (closes #12766) by Benjamin Peterson · 14 years ago
  67. 269e3ee #12266: merge with 3.2. by Ezio Melotti · 14 years ago
  68. ee8d998 #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. by Ezio Melotti · 14 years ago
  69. f8e7543 merge 3.2 (#12732) by Benjamin Peterson · 14 years ago
  70. f413b80 in narrow builds, make sure to test codepoints as identifier characters (closes #12732) by Benjamin Peterson · 14 years ago
  71. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 14 years ago
  72. ecb3bd9 merge 3.2 by Benjamin Peterson · 14 years ago
  73. 43a976e remove duplicated type ready by Benjamin Peterson · 14 years ago
  74. 18d7d7a also make NotImplementedType callable by Benjamin Peterson · 14 years ago
  75. c4607ae make the types of None and Ellipsis callable by Benjamin Peterson · 14 years ago
  76. 66d2be8 Issue 12647: Add __bool__() method to the None object. by Raymond Hettinger · 14 years ago
  77. fcdaaa9 merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 14 years ago
  78. 53516a8 Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 14 years ago
  79. c12469d Merge from 3.2. by Eric V. Smith · 14 years ago
  80. 12ebefc Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. by Eric V. Smith · 14 years ago
  81. 9b43b6e Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 14 years ago
  82. ff35050 Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 14 years ago
  83. 8cdc40e Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 14 years ago
  84. 093c8e4 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 14 years ago
  85. 84f1b17 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 14 years ago
  86. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 14 years ago
  87. bc9d8f8 merge from 3.2 by Senthil Kumaran · 14 years ago
  88. 9ebe08d Fix closes issue12471 - wrong TypeError message when '%i' format spec was used. by Senthil Kumaran · 14 years ago
  89. f07c9a1 this is expressed better as a for loop by Benjamin Peterson · 14 years ago
  90. 31877c9 merge from 3.2 by Senthil Kumaran · 14 years ago
  91. 84e3ccc Fix closes Issue12385 - Clarify maketrans method docstring for bytes and bytearray object. by Senthil Kumaran · 14 years ago
  92. 9003760 map cells to arg slots at code creation time (closes #12399) by Benjamin Peterson · 14 years ago
  93. f5ff223 use a invalid name for the __class__ closure for super() (closes #12370) by Benjamin Peterson · 14 years ago
  94. 722954a quaint and completely out of date comment by Benjamin Peterson · 14 years ago
  95. 3bbb722 allow __dir__ to return any sequence by Benjamin Peterson · 14 years ago
  96. 8c6f88e remove __version__s dependent on subversion keyword expansion (closes #12221) by Benjamin Peterson · 14 years ago
  97. f2a9421 Close #10616: mention bytes and bytearray in PyObject_AsCharBuffer() error by Victor Stinner · 14 years ago
  98. 4f2dab5 Revert my commit 7ba176c2f558: "Avoid useless "++" at the end of functions by Victor Stinner · 14 years ago
  99. 92236e5 SystemExit_init(): avoid an useless test by Victor Stinner · 14 years ago
  100. a1a807b set_repr(): handle correctly PyUnicode_FromUnicode() error (MemoryError) by Victor Stinner · 14 years ago