1. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  2. d4fff17 Fix leaked reference to None. by Walter Dörwald · 19 years ago
  3. 8294de5 Another comment typo fix by Andrew M. Kuchling · 19 years ago
  4. 2e2c02f Fix typo in comment. by Walter Dörwald · 19 years ago
  5. db390c1 fix typos, mostly in comments by Fred Drake · 19 years ago
  6. b2308bb Fix bug: by Michael W. Hudson · 19 years ago
  7. 5c4a9d6 Whitespace corrections. by Marc-André Lemburg · 19 years ago
  8. e115ec8 Bug fix for [ 1331062 ] utf 7 codec broken. by Marc-André Lemburg · 19 years ago
  9. d1c1e10 Part of SF patch #1313939: Speedup charmap decoding by extending by Walter Dörwald · 19 years ago
  10. a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 19 years ago
  11. a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 20 years ago
  12. 204bd6d Applied patch for [ 1047269 ] Buffer overwrite in PyUnicode_AsWideChar. by Marc-André Lemburg · 20 years ago
  13. 6543b45 Initialize sep and seplen to suppress warning from gcc. by Skip Montanaro · 20 years ago
  14. ca0d2cb Add a missing line continuation character. by Thomas Heller · 20 years ago
  15. 065a32f Make the hint about the None default less ambiguous. by Walter Dörwald · 20 years ago
  16. 782afc5 Enhance the docstrings for unicode.split() and string.split() by Walter Dörwald · 20 years ago
  17. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  18. 91879ab PyUnicode_Join(): Bozo Alert. While this is chugging along, it may by Tim Peters · 20 years ago
  19. 05eba1f PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't do by Tim Peters · 20 years ago
  20. 894c512 PyUnicode_Join(): Missed a spot where I intended a cast from size_t to by Tim Peters · 20 years ago
  21. 8ce9f16 PyUnicode_Join(): Two primary aims: by Tim Peters · 20 years ago
  22. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 20 years ago
  23. d25c650 Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__(). by Marc-André Lemburg · 20 years ago
  24. 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 20 years ago
  25. 126b44c Fix a copy&paste typo. by Marc-André Lemburg · 20 years ago
  26. 1dffb12 .encode()/.decode() patch part 2. by Marc-André Lemburg · 20 years ago
  27. d2d4598 Allow string and unicode return types from .encode()/.decode() by Marc-André Lemburg · 20 years ago
  28. 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 20 years ago
  29. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  30. 4057483 SF Patch #926375: Remove a useless UTF-16 support code that is never by Hye-Shik Chang · 20 years ago
  31. cd736e7 Fix reallocation bug in unicode.translate(): The code was comparing by Walter Dörwald · 20 years ago
  32. 1bc09b7 Cosmetic fix for wrongly indented tabs with ts=4. by Hye-Shik Chang · 21 years ago
  33. 7fc4cf5 Fix unicode.rsplit()'s bug that ignores separater on the end of string when by Hye-Shik Chang · 21 years ago
  34. 40e9509 Fix broken xmlcharrefreplace by rev 2.204. (Pointy hat goes to perky) by Hye-Shik Chang · 21 years ago
  35. 4a264fb SF #859573: Reduce compiler warnings on gcc 3.2 and above. by Hye-Shik Chang · 21 years ago
  36. 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
  37. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  38. 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
  39. 4894c30 Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap(). by Walter Dörwald · 21 years ago
  40. 6828e18 Patch #825679: Clarify semantics of .isfoo on empty strings. Backported to 2.3. by Martin v. Löwis · 21 years ago
  41. 504de6b Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. by Jeremy Hylton · 21 years ago
  42. ced69f8 On c.l.py, Martin v. Löwis said that Py_UNICODE could be of a signed type, by Tim Peters · 21 years ago
  43. d808279 Double-fix of crash in Unicode freelist handling. by Jeremy Hylton · 21 years ago
  44. deb2dc6 Change checks of PyUnicode_Resize() return value for clarity. by Jeremy Hylton · 21 years ago
  45. 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 21 years ago
  46. 150523e Fix refcounting leak in charmaptranslate_lookup() by Walter Dörwald · 21 years ago
  47. 9b30f20 Fix another refcounting leak in PyUnicode_EncodeCharmap(). by Walter Dörwald · 21 years ago
  48. d4ade08 Fix another refcounting leak (in PyUnicode_DecodeUnicodeEscape()). by Walter Dörwald · 21 years ago
  49. e5402fb Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfaces by Walter Dörwald · 21 years ago
  50. 0ccda1e Support 'mbcs' as a 'built-in' encoding, so the C API can use it without by Mark Hammond · 21 years ago
  51. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  52. 9a3a9f7 Consider \U-escapes in raw-unicode-escape. Fixes #444514. by Martin v. Löwis · 21 years ago
  53. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 21 years ago
  54. a713218 Reformat a few docstrings that caused line wraps in help() output. by Guido van Rossum · 21 years ago
  55. 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 21 years ago
  56. c8df578 Sf patch #700047: unicode object leaks refcount on resizing by Raymond Hettinger · 21 years ago
  57. ec74f2f Add more missing PyErr_NoMemory() after failled memory allocs by Neal Norwitz · 21 years ago
  58. f6b56ae Fix two refcounting bugs by Walter Dörwald · 21 years ago
  59. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 21 years ago
  60. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 21 years ago
  61. adc7274 Fix charmapencode_lookup(), so that a None value in the mapping by Walter Dörwald · 22 years ago
  62. 034d976 Remove variable owned from PyUnicode_FromEncodedObject, which is unused by Walter Dörwald · 22 years ago
  63. 79f5783 Patch for bug #659709: bogus computation of float length by Marc-André Lemburg · 22 years ago
  64. ce30bc9 Add nb_remainder (i.e. __mod__) slot to unicode type. Fixes SF bug #615506. by Neil Schemenauer · 22 years ago
  65. 80a1bf4 Fix SF # 635969, No error "not all arguments converted" by Neal Norwitz · 22 years ago
  66. 9cd87aa Fix for bug #626172: crash using unicode latin1 single char by Marc-André Lemburg · 22 years ago
  67. 049cd6b Fix a nasty endcase reported by Armin Rigo in SF bug 618623: by Guido van Rossum · 22 years ago
  68. 24e53b6 Add cast to avoid compiler warning. by Marc-André Lemburg · 22 years ago
  69. a0378e1 Fix part of SF bug # 544248 gcc warning in unicodeobject.c by Neal Norwitz · 22 years ago
  70. efc1188 Fix warnings on 64-bit platforms about casts from pointers to ints. by Guido van Rossum · 22 years ago
  71. 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 22 years ago
  72. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  73. 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 22 years ago
  74. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
  75. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 22 years ago
  76. 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 22 years ago
  77. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
  78. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago
  79. f36921c Unicode replace() method with empty pattern argument should fail, like by Guido van Rossum · 22 years ago
  80. 6a043f3 PyUnicode_Contains(): The memcmp() call didn't take into account the by Barry Warsaw · 22 years ago
  81. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
  82. 35b37a5 tighten up the unicode object's docstring a tad by Skip Montanaro · 22 years ago
  83. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  84. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  85. 20e7213 Fix typo in exception message by Neal Norwitz · 22 years ago
  86. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  87. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  88. 4164439 Fix a possible segfault. Found be Neal Norvitz. by Marc-André Lemburg · 22 years ago
  89. 4da6fd6 Fix for bug [ 561796 ] string.find causes lazy error by Marc-André Lemburg · 22 years ago
  90. cacfc07 - A new type object, 'string', is added. This is a common base type by Guido van Rossum · 22 years ago
  91. 0ebac97 Patch 549187. Improve string formatting error message. by Raymond Hettinger · 22 years ago
  92. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  93. 602f740 SF patch 549375: Compromise PyUnicode_EncodeUTF8 by Tim Peters · 22 years ago
  94. 030a5ce unicode_memchr(): Squashed gratuitous int-vs-size_t mismatch (which by Tim Peters · 22 years ago
  95. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 22 years ago
  96. 0eca65c PyUnicode_EncodeUTF8(): tightened the memory asserts a bit, and at least by Tim Peters · 22 years ago
  97. 2a7ff35 Back out 2.140. by Martin v. Löwis · 22 years ago
  98. 7e3d961 PyUnicode_EncodeUTF8: squash compiler wng. The difference of two by Tim Peters · 22 years ago
  99. a4eb14b Patch #495401: Count number of required bytes for encoding UTF-8 before by Martin v. Löwis · 22 years ago
  100. 0fe940c Return the orginal string only if it's a real str or unicode by Walter Dörwald · 22 years ago