1. 602f740 SF patch 549375: Compromise PyUnicode_EncodeUTF8 by Tim Peters · 22 years ago
  2. 030a5ce unicode_memchr(): Squashed gratuitous int-vs-size_t mismatch (which by Tim Peters · 22 years ago
  3. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 22 years ago
  4. 0eca65c PyUnicode_EncodeUTF8(): tightened the memory asserts a bit, and at least by Tim Peters · 22 years ago
  5. 2a7ff35 Back out 2.140. by Martin v. Löwis · 22 years ago
  6. 7e3d961 PyUnicode_EncodeUTF8: squash compiler wng. The difference of two by Tim Peters · 22 years ago
  7. a4eb14b Patch #495401: Count number of required bytes for encoding UTF-8 before by Martin v. Löwis · 22 years ago
  8. 0fe940c Return the orginal string only if it's a real str or unicode by Walter Dörwald · 22 years ago
  9. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  10. 58aa861 Remove PyMalloc_*. by Neil Schemenauer · 22 years ago
  11. 68e6933 Bug fix for UTF-8 encoding bug (buffer overrun) #541828. by Marc-André Lemburg · 22 years ago
  12. ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 22 years ago
  13. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  14. 8c07722 Fix whitespace. by Walter Dörwald · 22 years ago
  15. dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  16. 047c05e Do not insert characters for unicode-escape decoders if the error mode by Martin v. Löwis · 22 years ago
  17. 5e9c80d %#x/%#X format conversion cleanup (see patch #450267): by Andrew MacIntyre · 22 years ago
  18. c487439 OS/2 EMX port changes (Objects part of patch #450267): by Andrew MacIntyre · 22 years ago
  19. bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 22 years ago
  20. dc724d6 Cosmetics. by Marc-André Lemburg · 22 years ago
  21. e7c6ee4 Whitespace fixes. by Marc-André Lemburg · 22 years ago
  22. 3688a88 Fix for the UTF-8 memory allocation bug and the UTF-8 encoding by Marc-André Lemburg · 22 years ago
  23. 604ddf8 Fix for #489669 (Neil Norwitz): memory leak in test_descr (unicode). by Guido van Rossum · 23 years ago
  24. e5c492d formatfloat(), formatint(): Conversion of sprintf() to PyOS_snprintf() by Barry Warsaw · 23 years ago
  25. 11326de Fix for bug #485951: repr diff between string and unicode. by Marc-André Lemburg · 23 years ago
  26. 72f8213 Fix for bug #438164: %-formatting using Unicode objects. by Marc-André Lemburg · 23 years ago
  27. b5507ec Additional test and documentation for the unicode() changes. by Marc-André Lemburg · 23 years ago
  28. b8c65bc SF patch #470578: Fixes to synchronize unicode() and str() by Guido van Rossum · 23 years ago
  29. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  30. ad9744a Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead of \\. by Guido van Rossum · 23 years ago
  31. 3508e30 Fix Unicode .join() method to raise a TypeError for sequence by Marc-André Lemburg · 23 years ago
  32. 6871f6a Implement the changes proposed in patch #413333. unicode(obj) now by Marc-André Lemburg · 23 years ago
  33. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  34. af90b3e str_subtype_new, unicode_subtype_new: by Tim Peters · 23 years ago
  35. 7a29bd5 More on bug 460020: disable many optimizations of unicode subclasses. by Tim Peters · 23 years ago
  36. 78e0fc7 Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  37. 0ebeb58 PyUnicode_FromEncodedObject(): Repair memory leak in an error case. by Tim Peters · 23 years ago
  38. e023fe0 Make unicode subclassable. by Guido van Rossum · 23 years ago
  39. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  40. 772747b SF patch #438013 Remove 2-byte Py_UCS2 assumptions by Tim Peters · 23 years ago
  41. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  42. 3ce4538 Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. by Jeremy Hylton · 23 years ago
  43. 80d1dd5 Fix for bug #444493: u'\U00010001' segfaults with current CVS on wide builds. by Marc-André Lemburg · 23 years ago
  44. 6c6bfb7 Make the unicode-escape and the UTF-16 codecs handle surrogates by Marc-André Lemburg · 23 years ago
  45. 0d42e0c #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. This by Guido van Rossum · 23 years ago
  46. 8f45585 use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE tests. by Fredrik Lundh · 23 years ago
  47. ce9b5a5 Encode surrogates in UTF-8 even for a wide Py_UNICODE. by Martin v. Löwis · 23 years ago
  48. ac93bc2 When decoding UTF-16, don't assume that the buffer is in native endianness by Martin v. Löwis · 23 years ago
  49. 0ba70cc Support using UCS-4 as the Py_UNICODE type: by Martin v. Löwis · 23 years ago
  50. 1294ad0 experimental UCS-4 support: added USE_UCS4_STORAGE define to by Fredrik Lundh · 23 years ago
  51. 45714e9 experimental UCS-4 support: made compare a bit more robust, in case by Fredrik Lundh · 23 years ago
  52. 3083163 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
  53. ad98db1 Fix a mis-indentation in _PyUnicode_New() that caused me to stare at by Guido van Rossum · 23 years ago
  54. 8879a33 Fixes [ #430986 ] Buglet in PyUnicode_FromUnicode. by Marc-André Lemburg · 23 years ago
  55. 9cea41c fix bogus indentation by Jeremy Hylton · 23 years ago
  56. 489b56e This patch changes the behaviour of the UTF-16 codec family. Only the by Marc-André Lemburg · 23 years ago
  57. d37292b Remove unused variable by Jeremy Hylton · 23 years ago
  58. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  59. b3d8d1f A different approach to the problem reported in by Tim Peters · 23 years ago
  60. 8155e0e This patch originated from an idea by Martin v. Loewis who submitted a by Marc-André Lemburg · 23 years ago
  61. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  62. 78fe530 CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas. by Tim Peters · 23 years ago
  63. b8a9321 Revert previous checkin, which caused test_unicodedata to fail. by Jeremy Hylton · 23 years ago
  64. da3dc5b Patch #416953: Cache ASCII characters to speed up ASCII decoding. by Martin v. Löwis · 23 years ago
  65. fff5325 Bug 415514 reported that e.g. by Tim Peters · 23 years ago
  66. 711088d Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. by Tim Peters · 23 years ago
  67. ccc7473 reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make it by Fredrik Lundh · 23 years ago
  68. fde66e1 Fixed .capitalize() method of Unicode objects to work like the by Marc-André Lemburg · 23 years ago
  69. fa004ad Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. by Ka-Ping Yee · 23 years ago
  70. 06d1268 Move uchhash functionality into unicodedata (after the recent by Fredrik Lundh · 23 years ago
  71. f605606 Better error message if ucnhash cannot be found (obscure attribute by Fredrik Lundh · 23 years ago
  72. 0fdb90c refactored the unicodeobject/ucnhash interface, to hide the by Fredrik Lundh · 23 years ago
  73. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 23 years ago
  74. 3a645e4 Added checks to prevent PyUnicode_Count() from dumping core by Marc-André Lemburg · 24 years ago
  75. ec233e5 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 24 years ago
  76. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 24 years ago
  77. f947ffe Patch #102940: use only printable Unicode chars in reporting by Andrew M. Kuchling · 24 years ago
  78. cda4f9a Fix off-by-one error in split_substring(). Fixes SF bug #122162. by Guido van Rossum · 24 years ago
  79. 6ca8917 [ Patch #102852 ] Make % error a bit more informative by indicates the by Andrew M. Kuchling · 24 years ago
  80. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 24 years ago
  81. 5b4c228 _PyUnicode_Fini(): Initialize the local freelist walking variable `u' by Barry Warsaw · 24 years ago
  82. 4ae8ef8 In _PyUnicode_Fini(), decref unicode_empty before tearng down the free by Guido van Rossum · 24 years ago
  83. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  84. 38fd5b6 Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,o formats. by Tim Peters · 24 years ago
  85. 8f42246 Fix for bug 113934. string*n and unicode*n did no overflow checking at by Tim Peters · 24 years ago
  86. df84675 changed \x to consume exactly two hex digits, also for unicode by Fredrik Lundh · 24 years ago
  87. ce4dc41 PyUnicode_AsUTF8String(): /F picks up what I missed: the local var by Barry Warsaw · 24 years ago
  88. 2dd4abf PyUnicode_AsUTF8String(): Don't need to explicitly incref str since by Barry Warsaw · 24 years ago
  89. b752077 Fixed a couple of instances where a 0-length string was being by Marc-André Lemburg · 24 years ago
  90. 20abf57 Clean up warning from Monterey compiler. by Trent Mick · 24 years ago
  91. e503437 Removing UTF-16 aware Unicode comparison code. This kind of compare by Marc-André Lemburg · 24 years ago
  92. bff879c This patch finalizes the move from UTF-8 to a default encoding in by Marc-André Lemburg · 24 years ago
  93. 16b1ad9 Changing the CNRI copyright notice according to CNRI's instructions. by Guido van Rossum · 24 years ago
  94. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  95. 7889010 Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, by Thomas Wouters · 24 years ago
  96. 9542f48 Fixed problems with UTF error reporting macros and some formatting bugs. by Marc-André Lemburg · 24 years ago
  97. af36a3a gcc is being stupid with if/else constructs clean out some other warnings by Greg Stein · 24 years ago
  98. ff97500 stop messing around with goto and just write the macro correctly. by Greg Stein · 24 years ago
  99. 0e19e76 - change \x to mean "byte" also in unicode literals (patch #100912) by Fredrik Lundh · 24 years ago
  100. 855ffac Fix fatal compiler (MSVC6) error: by Tim Peters · 24 years ago