1. a0378e1 Fix part of SF bug # 544248 gcc warning in unicodeobject.c by Neal Norwitz · 22 years ago
  2. efc1188 Fix warnings on 64-bit platforms about casts from pointers to ints. by Guido van Rossum · 22 years ago
  3. 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 22 years ago
  4. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  5. 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 22 years ago
  6. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
  7. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 22 years ago
  8. 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 22 years ago
  9. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
  10. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago
  11. f36921c Unicode replace() method with empty pattern argument should fail, like by Guido van Rossum · 22 years ago
  12. 6a043f3 PyUnicode_Contains(): The memcmp() call didn't take into account the by Barry Warsaw · 22 years ago
  13. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
  14. 35b37a5 tighten up the unicode object's docstring a tad by Skip Montanaro · 22 years ago
  15. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  16. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  17. 20e7213 Fix typo in exception message by Neal Norwitz · 22 years ago
  18. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  19. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  20. 4164439 Fix a possible segfault. Found be Neal Norvitz. by Marc-André Lemburg · 22 years ago
  21. 4da6fd6 Fix for bug [ 561796 ] string.find causes lazy error by Marc-André Lemburg · 22 years ago
  22. cacfc07 - A new type object, 'string', is added. This is a common base type by Guido van Rossum · 22 years ago
  23. 0ebac97 Patch 549187. Improve string formatting error message. by Raymond Hettinger · 22 years ago
  24. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  25. 602f740 SF patch 549375: Compromise PyUnicode_EncodeUTF8 by Tim Peters · 22 years ago
  26. 030a5ce unicode_memchr(): Squashed gratuitous int-vs-size_t mismatch (which by Tim Peters · 22 years ago
  27. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 22 years ago
  28. 0eca65c PyUnicode_EncodeUTF8(): tightened the memory asserts a bit, and at least by Tim Peters · 22 years ago
  29. 2a7ff35 Back out 2.140. by Martin v. Löwis · 22 years ago
  30. 7e3d961 PyUnicode_EncodeUTF8: squash compiler wng. The difference of two by Tim Peters · 22 years ago
  31. a4eb14b Patch #495401: Count number of required bytes for encoding UTF-8 before by Martin v. Löwis · 22 years ago
  32. 0fe940c Return the orginal string only if it's a real str or unicode by Walter Dörwald · 22 years ago
  33. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  34. 58aa861 Remove PyMalloc_*. by Neil Schemenauer · 22 years ago
  35. 68e6933 Bug fix for UTF-8 encoding bug (buffer overrun) #541828. by Marc-André Lemburg · 22 years ago
  36. ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 22 years ago
  37. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  38. 8c07722 Fix whitespace. by Walter Dörwald · 22 years ago
  39. dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  40. 047c05e Do not insert characters for unicode-escape decoders if the error mode by Martin v. Löwis · 22 years ago
  41. 5e9c80d %#x/%#X format conversion cleanup (see patch #450267): by Andrew MacIntyre · 22 years ago
  42. c487439 OS/2 EMX port changes (Objects part of patch #450267): by Andrew MacIntyre · 22 years ago
  43. bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 22 years ago
  44. dc724d6 Cosmetics. by Marc-André Lemburg · 22 years ago
  45. e7c6ee4 Whitespace fixes. by Marc-André Lemburg · 22 years ago
  46. 3688a88 Fix for the UTF-8 memory allocation bug and the UTF-8 encoding by Marc-André Lemburg · 22 years ago
  47. 604ddf8 Fix for #489669 (Neil Norwitz): memory leak in test_descr (unicode). by Guido van Rossum · 23 years ago
  48. e5c492d formatfloat(), formatint(): Conversion of sprintf() to PyOS_snprintf() by Barry Warsaw · 23 years ago
  49. 11326de Fix for bug #485951: repr diff between string and unicode. by Marc-André Lemburg · 23 years ago
  50. 72f8213 Fix for bug #438164: %-formatting using Unicode objects. by Marc-André Lemburg · 23 years ago
  51. b5507ec Additional test and documentation for the unicode() changes. by Marc-André Lemburg · 23 years ago
  52. b8c65bc SF patch #470578: Fixes to synchronize unicode() and str() by Guido van Rossum · 23 years ago
  53. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  54. ad9744a Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead of \\. by Guido van Rossum · 23 years ago
  55. 3508e30 Fix Unicode .join() method to raise a TypeError for sequence by Marc-André Lemburg · 23 years ago
  56. 6871f6a Implement the changes proposed in patch #413333. unicode(obj) now by Marc-André Lemburg · 23 years ago
  57. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  58. af90b3e str_subtype_new, unicode_subtype_new: by Tim Peters · 23 years ago
  59. 7a29bd5 More on bug 460020: disable many optimizations of unicode subclasses. by Tim Peters · 23 years ago
  60. 78e0fc7 Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  61. 0ebeb58 PyUnicode_FromEncodedObject(): Repair memory leak in an error case. by Tim Peters · 23 years ago
  62. e023fe0 Make unicode subclassable. by Guido van Rossum · 23 years ago
  63. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  64. 772747b SF patch #438013 Remove 2-byte Py_UCS2 assumptions by Tim Peters · 23 years ago
  65. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  66. 3ce4538 Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. by Jeremy Hylton · 23 years ago
  67. 80d1dd5 Fix for bug #444493: u'\U00010001' segfaults with current CVS on wide builds. by Marc-André Lemburg · 23 years ago
  68. 6c6bfb7 Make the unicode-escape and the UTF-16 codecs handle surrogates by Marc-André Lemburg · 23 years ago
  69. 0d42e0c #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. This by Guido van Rossum · 23 years ago
  70. 8f45585 use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE tests. by Fredrik Lundh · 23 years ago
  71. ce9b5a5 Encode surrogates in UTF-8 even for a wide Py_UNICODE. by Martin v. Löwis · 23 years ago
  72. ac93bc2 When decoding UTF-16, don't assume that the buffer is in native endianness by Martin v. Löwis · 23 years ago
  73. 0ba70cc Support using UCS-4 as the Py_UNICODE type: by Martin v. Löwis · 23 years ago
  74. 1294ad0 experimental UCS-4 support: added USE_UCS4_STORAGE define to by Fredrik Lundh · 23 years ago
  75. 45714e9 experimental UCS-4 support: made compare a bit more robust, in case by Fredrik Lundh · 23 years ago
  76. 3083163 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
  77. ad98db1 Fix a mis-indentation in _PyUnicode_New() that caused me to stare at by Guido van Rossum · 23 years ago
  78. 8879a33 Fixes [ #430986 ] Buglet in PyUnicode_FromUnicode. by Marc-André Lemburg · 23 years ago
  79. 9cea41c fix bogus indentation by Jeremy Hylton · 23 years ago
  80. 489b56e This patch changes the behaviour of the UTF-16 codec family. Only the by Marc-André Lemburg · 23 years ago
  81. d37292b Remove unused variable by Jeremy Hylton · 23 years ago
  82. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  83. b3d8d1f A different approach to the problem reported in by Tim Peters · 23 years ago
  84. 8155e0e This patch originated from an idea by Martin v. Loewis who submitted a by Marc-André Lemburg · 23 years ago
  85. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  86. 78fe530 CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas. by Tim Peters · 23 years ago
  87. b8a9321 Revert previous checkin, which caused test_unicodedata to fail. by Jeremy Hylton · 23 years ago
  88. da3dc5b Patch #416953: Cache ASCII characters to speed up ASCII decoding. by Martin v. Löwis · 23 years ago
  89. fff5325 Bug 415514 reported that e.g. by Tim Peters · 23 years ago
  90. 711088d Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. by Tim Peters · 23 years ago
  91. ccc7473 reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make it by Fredrik Lundh · 23 years ago
  92. fde66e1 Fixed .capitalize() method of Unicode objects to work like the by Marc-André Lemburg · 23 years ago
  93. fa004ad Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. by Ka-Ping Yee · 23 years ago
  94. 06d1268 Move uchhash functionality into unicodedata (after the recent by Fredrik Lundh · 23 years ago
  95. f605606 Better error message if ucnhash cannot be found (obscure attribute by Fredrik Lundh · 23 years ago
  96. 0fdb90c refactored the unicodeobject/ucnhash interface, to hide the by Fredrik Lundh · 23 years ago
  97. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 23 years ago
  98. 3a645e4 Added checks to prevent PyUnicode_Count() from dumping core by Marc-André Lemburg · 24 years ago
  99. ec233e5 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 24 years ago
  100. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 24 years ago