1. 566d8a6 Jeremy Hylton: better error message for unicode coercion failure by Marc-André Lemburg · 24 years ago
  2. 771d067 string_join(): Some cleaning up of reference counting. In the by Barry Warsaw · 24 years ago
  3. 4904829 fix two refcount bugs in new string_join implementation: by Jeremy Hylton · 24 years ago
  4. 194e43e two changes to string_join: by Jeremy Hylton · 24 years ago
  5. dde6164 - changed hash calculation for unicode strings. the new by Fredrik Lundh · 24 years ago
  6. 100814d ANSI-fication of the sources. by Fred Drake · 24 years ago
  7. a2f5511 ANSI-fication of the sources. by Fred Drake · 24 years ago
  8. c2e7da9 Somebody started playing with const, so of course the outcome by Tim Peters · 24 years ago
  9. ba09633 ANSI-fication of the sources. by Fred Drake · 24 years ago
  10. 45cfbcc ANSI-fication of the sources. by Fred Drake · 24 years ago
  11. ee238b9 ANSI-fication of the sources. by Fred Drake · 24 years ago
  12. 1b190b4 ANSI-fication of the sources. by Fred Drake · 24 years ago
  13. 1f0968c Remove legacy use of __SC__; no longer needed now that ANSI source is by Fred Drake · 24 years ago
  14. fd99de6 ANSI-fication of the sources. by Fred Drake · 24 years ago
  15. 4288c80 ANSI-fication of the sources. by Fred Drake · 24 years ago
  16. 4201b9e type_error(): Added "const" to signature to eliminate warning with -Wall. by Fred Drake · 24 years ago
  17. 3be9a8a ANSI-fication of the source. by Fred Drake · 24 years ago
  18. 7991247 ANSI-fication of the sources. by Fred Drake · 24 years ago
  19. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  20. 2a1e060 - changed __repr__ to use "unicode escape" encoding for unicode by Fredrik Lundh · 24 years ago
  21. 4cbc9f7 delete unused local variable from _PyTrash_deposit_object by Skip Montanaro · 24 years ago
  22. 4ca150b _Py_RefTotal should only be declared here when Py_TRACE_REFS are #define'd by Skip Montanaro · 24 years ago
  23. 7d3a511 Cray J90 fixes for long ints. by Tim Peters · 24 years ago
  24. 43f04a3 The tail end of x_sub implicitly assumed that an unsigned short by Tim Peters · 24 years ago
  25. 9ace6bc Got RID of redundant coercions in longobject.c (as spotted by Greg by Tim Peters · 24 years ago
  26. e12896e New surrogate support in the UTF-8 codec. By Bill Tutt. by Marc-André Lemburg · 24 years ago
  27. 9f688bf Some cleanup of longs in prepartion for Cray J90 fixes: got by Tim Peters · 24 years ago
  28. 5a5c81a Added new API PyUnicode_FromEncodedObject() which supports decoding by Marc-André Lemburg · 24 years ago
  29. 063e0cb Fix to bug #393 (UTF16 codec didn't like empty strings) and by Marc-André Lemburg · 24 years ago
  30. 2629bd5 Two more places where long should be used instead of int. Especially by Sjoerd Mullender · 24 years ago
  31. 449c325 Fixed some code that used 'short' to use 'long' instead. by Marc-André Lemburg · 24 years ago
  32. 85cc4d8 Fixed a couple of places where 'int' was used where 'long' by Marc-André Lemburg · 24 years ago
  33. 56cdce3 Conditionally (currently on ifdef macintosh) break the large switch up by Jack Jansen · 24 years ago
  34. 63f3d17 Added new codec APIs and a new interface method .encode() which by Marc-André Lemburg · 24 years ago
  35. 1f46860 Fix to bug #389: by Marc-André Lemburg · 24 years ago
  36. a7acf42 Added new .isalpha() and .isalnum() methods which provide interfaces by Marc-André Lemburg · 24 years ago
  37. f3938f5 Added new lookup API which matches all alphabetic Unicode characters, by Marc-André Lemburg · 24 years ago
  38. 4027f8f Added new .isalpha() and .isalnum() methods to match the same by Marc-André Lemburg · 24 years ago
  39. 1f5871e Removed Py_PROTO and switched to ANSI C declarations in the dict by Tim Peters · 24 years ago
  40. 1e7205a Bill Tutt: by Marc-André Lemburg · 24 years ago
  41. 891bc65 If auto-conversion fails, the Unicode codecs will return NULL. by Marc-André Lemburg · 24 years ago
  42. efecc7d changed repr and str to always convert unicode strings by Fredrik Lundh · 24 years ago
  43. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
  44. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  45. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  46. 9a15c21 Fix an error on AIX by using a proper cast. by Guido van Rossum · 24 years ago
  47. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  48. d49e5b4 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  49. f28dd83 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  50. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  51. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
  52. 4f4b799 Jack Jansen: Use include "" instead of <>; and staticforward declarations by Guido van Rossum · 24 years ago
  53. d7823f2 Vladimir Marangozov: by Guido van Rossum · 24 years ago
  54. ad89bbc Trent Mick: change a few casts for Win64 compatibility. by Guido van Rossum · 24 years ago
  55. eceebb8 Jack Jansen: Moved includes to the top, removed think C support by Guido van Rossum · 24 years ago
  56. 0f774e3 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  57. 7c01468 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  58. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  59. d22162b traverse functions should return 0 on success by Jeremy Hylton · 24 years ago
  60. 99a8f90 raise TypeError when PyObject_Get/SetAttr called with non-string name by Jeremy Hylton · 24 years ago
  61. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  62. 396f6e0 Fredrik Lundh <effbot@telia.com>: by Fred Drake · 24 years ago
  63. 49ef6dc Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  64. 74042d6 Patch from /F: by Andrew M. Kuchling · 24 years ago
  65. bea47e7 Vladimir MARANGOZOV <Vladimir.Marangozov@inrialpes.fr>: by Marc-André Lemburg · 24 years ago
  66. 29dc381 Michael Hudson <mwh21@cam.ac.uk>: by Marc-André Lemburg · 24 years ago
  67. 5678025 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  68. 60bc809 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  69. 07ceb67 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  70. a251ea0 the PyDict_SetItem does not borrow a reference, so we need to decref by Jeremy Hylton · 24 years ago
  71. cb95a14 Patch from Michael Hudson: improve unclear error message by Andrew M. Kuchling · 24 years ago
  72. d4ab4a5 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  73. 90e8147 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  74. 4c7fdfc Trent Mick <trentm@ActiveState.com>: by Fred Drake · 24 years ago
  75. 914a2ed Improve TypeError exception message for list catenation. by Fred Drake · 24 years ago
  76. b6a9ada Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  77. 785d14f Minimal change so I can add the rest of MAL's checkin message: by Fred Drake · 24 years ago
  78. e4315f5 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  79. c18a6f4 Replace PyErr_BadArgument() error in PyInt_AsLong() with "an integer by Guido van Rossum · 24 years ago
  80. b8872e6 Trent Mick: by Guido van Rossum · 24 years ago
  81. c682140 Trent Mick: by Guido van Rossum · 24 years ago
  82. b8f820c The methods islower(), isupper(), isspace(), isdigit() and istitle() by Guido van Rossum · 24 years ago
  83. 03e29f1 Mark Hammond should get his act into gear (his words :-). Zero length by Guido van Rossum · 24 years ago
  84. 42c29aa Fix warning detected by VC++ on assignment of Py_UNICODE to char. by Guido van Rossum · 24 years ago
  85. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  86. 4e751c3 Mark Hammond withdraws his fix -- the size includes the trailing 0 so by Guido van Rossum · 24 years ago
  87. a6edfd9 Mark Hammond: by Guido van Rossum · 24 years ago
  88. ee98e4e Ignore a bunch of generated files. by Barry Warsaw · 24 years ago
  89. 0e4f657 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  90. 37b1a26 add list_contains and tuplecontains: efficient implementations of tp_contains by Jeremy Hylton · 24 years ago
  91. ec5b776 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  92. 3c1bb80 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  93. 9e392e2 potentially useless optimization by Jeremy Hylton · 24 years ago
  94. e92e610 Christian Tismer -- total rewrite on trashcan code. by Guido van Rossum · 24 years ago
  95. 5ce78f8 Patch by Charles G Waldman to avoid a sneaky memory leak in by Guido van Rossum · 24 years ago
  96. 4a3dd2d Fix PR#7 comparisons of recursive objects by Jeremy Hylton · 24 years ago
  97. f0b7b04 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  98. dc742b3 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  99. 8666291 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  100. ba71a24 Simple optimization by Christian Tismer, who gives credit to Lenny by Guido van Rossum · 24 years ago