1. 52e155e Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup. by Tim Peters · 23 years ago
  2. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
  3. 8c2133d Fix for bug #432384: Recursion in PyString_AsEncodedString? by Marc-André Lemburg · 23 years ago
  4. cd35306 Patch #424335: Implement string_richcompare, remove string_compare. by Martin v. Löwis · 23 years ago
  5. 2d92041 This patch changes the way the string .encode() method works slightly by Marc-André Lemburg · 23 years ago
  6. 9c012af Heh. I need a break. After this: stropmodule & stringobject were more by Tim Peters · 23 years ago
  7. 4cd44ef Fudge. stropmodule and stringobject both had copies of the buggy by Tim Peters · 23 years ago
  8. 1a97d5f SF patch #416247 2.1c1 stringobject: unused vrbl cleanup. Thanks to Mark Favas. by Tim Peters · 23 years ago
  9. 4862ab7 Sheesh -- repair the dodge around "cast isn't an lvalue" complaints to by Tim Peters · 23 years ago
  10. 9e897f4 Mark Favas reported that gcc caught me using casts as lvalues. Dodge it. by Tim Peters · 23 years ago
  11. b4bbcd7 Ack! Restore the COUNT_ALLOCS one_strings code. by Tim Peters · 23 years ago
  12. cf5ad5d My change to string_item() left an extra reference to each 1-character by Tim Peters · 23 years ago
  13. 5b4d477 Intern 1-character strings as soon as they're created. As-is, they aren't by Tim Peters · 23 years ago
  14. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  15. 542fe56 Fix for bug #417030: "print '%*s' fails for unicode string" by Marc-André Lemburg · 23 years ago
  16. 189f1df Add a proper implementation for the tp_str slot (returning self, of by Guido van Rossum · 23 years ago
  17. b3d8d1f A different approach to the problem reported in by Tim Peters · 23 years ago
  18. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  19. fff5325 Bug 415514 reported that e.g. by Tim Peters · 23 years ago
  20. 711088d Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. by Tim Peters · 23 years ago
  21. a903ad98 _Py_ReleaseInternedStrings(): Private API function to decref and by Barry Warsaw · 23 years ago
  22. fa004ad Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. by Ka-Ping Yee · 24 years ago
  23. 19fe14e Derivative of patch #102549, "simpler, faster(!) implementation of string.join". by Tim Peters · 24 years ago
  24. 3a645e4 Added checks to prevent PyUnicode_Count() from dumping core by Marc-André Lemburg · 24 years ago
  25. 6ca8917 [ Patch #102852 ] Make % error a bit more informative by indicates the by Andrew M. Kuchling · 24 years ago
  26. 49312a5 Jeffrey D. Collins <tokeneater@users.sourceforge.net>: by Fred Drake · 24 years ago
  27. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 24 years ago
  28. 2ccda8a SF patch #102548, fix for bug #121013, by mwh@users.sourceforge.net. by Guido van Rossum · 24 years ago
  29. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  30. 53f3d4a [ Bug #116174 ] using %% in cstrings sometimes fails with unicode paramsFix for the bug reported in Bug #116174: "%% %s" % u"abc" failed due by Marc-André Lemburg · 24 years ago
  31. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  32. 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
  33. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 24 years ago
  34. 8f42246 Fix for bug 113934. string*n and unicode*n did no overflow checking at by Tim Peters · 24 years ago
  35. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  36. 4df762f Insure properly identifies the `interned' dictionary as leaking at by Barry Warsaw · 24 years ago
  37. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  38. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  39. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  40. bd9848d Fix typo in error message by Andrew M. Kuchling · 24 years ago
  41. 88887aa small updates to string_join: by Jeremy Hylton · 24 years ago
  42. 771d067 string_join(): Some cleaning up of reference counting. In the by Barry Warsaw · 24 years ago
  43. 4904829 fix two refcount bugs in new string_join implementation: by Jeremy Hylton · 24 years ago
  44. 194e43e two changes to string_join: by Jeremy Hylton · 24 years ago
  45. c2e7da9 Somebody started playing with const, so of course the outcome by Tim Peters · 24 years ago
  46. ba09633 ANSI-fication of the sources. by Fred Drake · 24 years ago
  47. 63f3d17 Added new codec APIs and a new interface method .encode() which by Marc-André Lemburg · 24 years ago
  48. 4027f8f Added new .isalpha() and .isalnum() methods to match the same by Marc-André Lemburg · 24 years ago
  49. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  50. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  51. f28dd83 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  52. 396f6e0 Fredrik Lundh <effbot@telia.com>: by Fred Drake · 24 years ago
  53. 60bc809 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  54. cb95a14 Patch from Michael Hudson: improve unclear error message by Andrew M. Kuchling · 24 years ago
  55. b6a9ada Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  56. c682140 Trent Mick: by Guido van Rossum · 24 years ago
  57. b8f820c The methods islower(), isupper(), isspace(), isdigit() and istitle() by Guido van Rossum · 24 years ago
  58. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  59. f0b7b04 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  60. 90daa87 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  61. 51ac580 On 17-Mar-2000, Marc-Andre Lemburg said: by Barry Warsaw · 24 years ago
  62. 96a45ad Fix typo in replace() detected by Mark Hammond and fixed by Marc-Andre. by Guido van Rossum · 24 years ago
  63. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  64. 9284a57 Patch by Moshe Zadka: move the string special case from abstract.c here. by Guido van Rossum · 24 years ago
  65. bf32583 string_join(): Fix memory leaks discovered by Charles Waldman (and a by Barry Warsaw · 24 years ago
  66. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  67. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  68. 153a27c do_strip(): Fixed cut-and-paste error; this function should check for by Barry Warsaw · 25 years ago
  69. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  70. 98c9eba Fix bug discovered by John W. Shipman -- when the width of a format by Guido van Rossum · 25 years ago
  71. 1db7070 Greg Stein: Implement the new bf_getcharbuffer function, indicating by Guido van Rossum · 26 years ago
  72. 07d7800 Typo reported by Greg Stein: "modifiable" is the correct spelling. by Guido van Rossum · 26 years ago
  73. 4a0144c Should check that PyObject_Str() really returned a string! by Guido van Rossum · 26 years ago
  74. 1109fbc Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  75. 045e688 Patch submitted by Brad Howes (with one bug fixed by me): allow by Guido van Rossum · 27 years ago
  76. 971a7aa Change the Fini function to only remove otherwise unreferenced strings by Guido van Rossum · 27 years ago
  77. 8cf0476 Added internal routine PyString_Fini() which deletes all interned by Guido van Rossum · 27 years ago
  78. 71160aa Use #include "mymath.h" instead of declaring fabs() explicitly. by Guido van Rossum · 27 years ago
  79. fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 27 years ago
  80. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  81. 2095d24 Tweaks to keep the Microsoft compiler quiet. by Guido van Rossum · 27 years ago
  82. 36b9f79 Slight tweak: in string_hash(), if the hash hasn't been computed yet, by Guido van Rossum · 28 years ago
  83. 4acdc23 Fix bug reported by Per Lindqvist: "%#06x" % 1 stuck the 0 padding by Guido van Rossum · 28 years ago
  84. a04d47b Don't use static buffers internally for formatstring(). by Guido van Rossum · 28 years ago
  85. 2a61e74 String interning. by Guido van Rossum · 28 years ago
  86. 067998f Add const to error and newstring functions by Guido van Rossum · 28 years ago
  87. da9c271 Make gcc -Wall happy by Guido van Rossum · 28 years ago
  88. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  89. fde7a75 Fixed compare function to do first char comparison in unsigned mode, by Guido van Rossum · 28 years ago
  90. eddcb3b Multiply by 1000003 instead of 3 in string hach by Guido van Rossum · 28 years ago
  91. 441e4ab new debugger symbol names by Guido van Rossum · 28 years ago
  92. f976326 Plug memory leak in the previous fix :-( by Guido van Rossum · 28 years ago
  93. 993952b Fix obscure bug in string%mapping where the mapping creates its items by Guido van Rossum · 28 years ago
  94. 6f9e433 fix dusty debugging macros by Guido van Rossum · 29 years ago
  95. 5fe6058 a few peephole optimizations by Guido van Rossum · 29 years ago
  96. caeaafc don't complain about too many args if arg is a dict by Guido van Rossum · 29 years ago
  97. 9fa2c11 use Py_CHARMASK; and don't check for neg. float to the float power here by Guido van Rossum · 30 years ago
  98. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  99. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  100. 03093a2 * Include/classobject.h, Objects/classobject.c, Python/ceval.c: by Guido van Rossum · 30 years ago