1. ad9744a Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead of \\. by Guido van Rossum · 23 years ago
  2. 3508e30 Fix Unicode .join() method to raise a TypeError for sequence by Marc-André Lemburg · 23 years ago
  3. 6871f6a Implement the changes proposed in patch #413333. unicode(obj) now by Marc-André Lemburg · 23 years ago
  4. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  5. af90b3e str_subtype_new, unicode_subtype_new: by Tim Peters · 23 years ago
  6. 7a29bd5 More on bug 460020: disable many optimizations of unicode subclasses. by Tim Peters · 23 years ago
  7. 78e0fc7 Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  8. 0ebeb58 PyUnicode_FromEncodedObject(): Repair memory leak in an error case. by Tim Peters · 23 years ago
  9. e023fe0 Make unicode subclassable. by Guido van Rossum · 23 years ago
  10. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  11. 772747b SF patch #438013 Remove 2-byte Py_UCS2 assumptions by Tim Peters · 23 years ago
  12. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  13. 3ce4538 Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. by Jeremy Hylton · 23 years ago
  14. 80d1dd5 Fix for bug #444493: u'\U00010001' segfaults with current CVS on wide builds. by Marc-André Lemburg · 23 years ago
  15. 6c6bfb7 Make the unicode-escape and the UTF-16 codecs handle surrogates by Marc-André Lemburg · 23 years ago
  16. 0d42e0c #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. This by Guido van Rossum · 23 years ago
  17. 8f45585 use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE tests. by Fredrik Lundh · 23 years ago
  18. ce9b5a5 Encode surrogates in UTF-8 even for a wide Py_UNICODE. by Martin v. Löwis · 23 years ago
  19. ac93bc2 When decoding UTF-16, don't assume that the buffer is in native endianness by Martin v. Löwis · 23 years ago
  20. 0ba70cc Support using UCS-4 as the Py_UNICODE type: by Martin v. Löwis · 23 years ago
  21. 1294ad0 experimental UCS-4 support: added USE_UCS4_STORAGE define to by Fredrik Lundh · 23 years ago
  22. 45714e9 experimental UCS-4 support: made compare a bit more robust, in case by Fredrik Lundh · 23 years ago
  23. 3083163 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
  24. ad98db1 Fix a mis-indentation in _PyUnicode_New() that caused me to stare at by Guido van Rossum · 23 years ago
  25. 8879a33 Fixes [ #430986 ] Buglet in PyUnicode_FromUnicode. by Marc-André Lemburg · 23 years ago
  26. 9cea41c fix bogus indentation by Jeremy Hylton · 23 years ago
  27. 489b56e This patch changes the behaviour of the UTF-16 codec family. Only the by Marc-André Lemburg · 23 years ago
  28. d37292b Remove unused variable by Jeremy Hylton · 23 years ago
  29. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  30. b3d8d1f A different approach to the problem reported in by Tim Peters · 23 years ago
  31. 8155e0e This patch originated from an idea by Martin v. Loewis who submitted a by Marc-André Lemburg · 23 years ago
  32. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  33. 78fe530 CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas. by Tim Peters · 23 years ago
  34. b8a9321 Revert previous checkin, which caused test_unicodedata to fail. by Jeremy Hylton · 23 years ago
  35. da3dc5b Patch #416953: Cache ASCII characters to speed up ASCII decoding. by Martin v. Löwis · 23 years ago
  36. fff5325 Bug 415514 reported that e.g. by Tim Peters · 23 years ago
  37. 711088d Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. by Tim Peters · 23 years ago
  38. ccc7473 reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make it by Fredrik Lundh · 23 years ago
  39. fde66e1 Fixed .capitalize() method of Unicode objects to work like the by Marc-André Lemburg · 23 years ago
  40. fa004ad Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. by Ka-Ping Yee · 23 years ago
  41. 06d1268 Move uchhash functionality into unicodedata (after the recent by Fredrik Lundh · 23 years ago
  42. f605606 Better error message if ucnhash cannot be found (obscure attribute by Fredrik Lundh · 23 years ago
  43. 0fdb90c refactored the unicodeobject/ucnhash interface, to hide the by Fredrik Lundh · 23 years ago
  44. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 23 years ago
  45. 3a645e4 Added checks to prevent PyUnicode_Count() from dumping core by Marc-André Lemburg · 23 years ago
  46. ec233e5 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 24 years ago
  47. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 24 years ago
  48. f947ffe Patch #102940: use only printable Unicode chars in reporting by Andrew M. Kuchling · 24 years ago
  49. cda4f9a Fix off-by-one error in split_substring(). Fixes SF bug #122162. by Guido van Rossum · 24 years ago
  50. 6ca8917 [ Patch #102852 ] Make % error a bit more informative by indicates the by Andrew M. Kuchling · 24 years ago
  51. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 24 years ago
  52. 5b4c228 _PyUnicode_Fini(): Initialize the local freelist walking variable `u' by Barry Warsaw · 24 years ago
  53. 4ae8ef8 In _PyUnicode_Fini(), decref unicode_empty before tearng down the free by Guido van Rossum · 24 years ago
  54. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  55. 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
  56. 8f42246 Fix for bug 113934. string*n and unicode*n did no overflow checking at by Tim Peters · 24 years ago
  57. df84675 changed \x to consume exactly two hex digits, also for unicode by Fredrik Lundh · 24 years ago
  58. ce4dc41 PyUnicode_AsUTF8String(): /F picks up what I missed: the local var by Barry Warsaw · 24 years ago
  59. 2dd4abf PyUnicode_AsUTF8String(): Don't need to explicitly incref str since by Barry Warsaw · 24 years ago
  60. b752077 Fixed a couple of instances where a 0-length string was being by Marc-André Lemburg · 24 years ago
  61. 20abf57 Clean up warning from Monterey compiler. by Trent Mick · 24 years ago
  62. e503437 Removing UTF-16 aware Unicode comparison code. This kind of compare by Marc-André Lemburg · 24 years ago
  63. bff879c This patch finalizes the move from UTF-8 to a default encoding in by Marc-André Lemburg · 24 years ago
  64. 16b1ad9 Changing the CNRI copyright notice according to CNRI's instructions. by Guido van Rossum · 24 years ago
  65. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  66. 7889010 Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, by Thomas Wouters · 24 years ago
  67. 9542f48 Fixed problems with UTF error reporting macros and some formatting bugs. by Marc-André Lemburg · 24 years ago
  68. af36a3a gcc is being stupid with if/else constructs clean out some other warnings by Greg Stein · 24 years ago
  69. ff97500 stop messing around with goto and just write the macro correctly. by Greg Stein · 24 years ago
  70. 0e19e76 - change \x to mean "byte" also in unicode literals (patch #100912) by Fredrik Lundh · 24 years ago
  71. 855ffac Fix fatal compiler (MSVC6) error: by Tim Peters · 24 years ago
  72. fb62584 Fix to a bug found by Florian Weimer: by Marc-André Lemburg · 24 years ago
  73. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  74. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  75. 566d8a6 Jeremy Hylton: better error message for unicode coercion failure by Marc-André Lemburg · 24 years ago
  76. dde6164 - changed hash calculation for unicode strings. the new by Fredrik Lundh · 24 years ago
  77. e12896e New surrogate support in the UTF-8 codec. By Bill Tutt. by Marc-André Lemburg · 24 years ago
  78. 5a5c81a Added new API PyUnicode_FromEncodedObject() which supports decoding by Marc-André Lemburg · 24 years ago
  79. 063e0cb Fix to bug #393 (UTF16 codec didn't like empty strings) and by Marc-André Lemburg · 24 years ago
  80. 2629bd5 Two more places where long should be used instead of int. Especially by Sjoerd Mullender · 24 years ago
  81. 449c325 Fixed some code that used 'short' to use 'long' instead. by Marc-André Lemburg · 24 years ago
  82. 85cc4d8 Fixed a couple of places where 'int' was used where 'long' by Marc-André Lemburg · 24 years ago
  83. a7acf42 Added new .isalpha() and .isalnum() methods which provide interfaces by Marc-André Lemburg · 24 years ago
  84. 1e7205a Bill Tutt: by Marc-André Lemburg · 24 years ago
  85. d49e5b4 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  86. f28dd83 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  87. 4f4b799 Jack Jansen: Use include "" instead of <>; and staticforward declarations by Guido van Rossum · 24 years ago
  88. 0f774e3 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  89. 7c01468 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  90. 49ef6dc Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  91. bea47e7 Vladimir MARANGOZOV <Vladimir.Marangozov@inrialpes.fr>: by Marc-André Lemburg · 24 years ago
  92. 60bc809 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  93. 07ceb67 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  94. cb95a14 Patch from Michael Hudson: improve unclear error message by Andrew M. Kuchling · 24 years ago
  95. d4ab4a5 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  96. 90e8147 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  97. 785d14f Minimal change so I can add the rest of MAL's checkin message: by Fred Drake · 24 years ago
  98. e4315f5 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  99. b8872e6 Trent Mick: by Guido van Rossum · 24 years ago
  100. 03e29f1 Mark Hammond should get his act into gear (his words :-). Zero length by Guido van Rossum · 24 years ago