1. 11384c6 raise error on duplicate function arguments by Peter Schneider-Kamp · 24 years ago
  2. 91826ed Improve the descriptions of expected exceptions for __getitem__(), by Fred Drake · 24 years ago
  3. 8d2f2b2 From Sam Rushing's Medusa, via SF patch #100858: add & document by Andrew M. Kuchling · 24 years ago
  4. 4d5d5bf forgot to change copy.copy(m) to m[:] by Skip Montanaro · 24 years ago
  5. 8dc19f6 Propagate the current exception in get_inprogress_dict() -- it doesn't by Vladimir Marangozov · 24 years ago
  6. 794b483 deleted obsolete SYMANTEC__CFM68K__ tests by Skip Montanaro · 24 years ago
  7. 6980dff delete obsolete SYMANTEC__CFM68K__ #ifdefs by Skip Montanaro · 24 years ago
  8. 97bc98a fixed semantics of commonprefix to work by path elements instead of characters. by Skip Montanaro · 24 years ago
  9. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  10. 6253f83 change abstract size functions PySequence_Size &c. by Jeremy Hylton · 24 years ago
  11. f981c8f Add "exceptions" to list of built-in modules for the sake of by Guido van Rossum · 24 years ago
  12. 3f2fa0a Add "exceptions" to list of built-in modules for the sake of by Guido van Rossum · 24 years ago
  13. 0ae5284 Fixed up some ANSIfications. by Sjoerd Mullender · 24 years ago
  14. 42bb8b3 apply patch #100868 from Moshe Zadka: by Greg Stein · 24 years ago
  15. 35e459c debug_instance(): Use the same %p format directive as with by Barry Warsaw · 24 years ago
  16. a618028 Second try: checks whether right shift extends the sign bit. by Vladimir Marangozov · 24 years ago
  17. 0582df9 Convert coding style to be internally consistent and similar to the by Fred Drake · 24 years ago
  18. cc1be24 Always use the :funcname part of the format specifier for PyArg_ParseTuple() by Fred Drake · 24 years ago
  19. bdcf91f Documentation for the gc module. Text from Neil Schemenauer by Fred Drake · 24 years ago
  20. bf26e07 Worm around MSVC6 error on single string literal > 2Kb. by Tim Peters · 24 years ago
  21. 38f7441 Remove extra argument to method call by Andrew M. Kuchling · 24 years ago
  22. 676aa88 Checks whether right shift extends the sign bit. by Vladimir Marangozov · 24 years ago
  23. 9a5a5d1 Checks whether right shift extends the sign bit. by Vladimir Marangozov · 24 years ago
  24. bd9848d Fix typo in error message by Andrew M. Kuchling · 24 years ago
  25. 7ae3a5e Resynchronize the TeX docs with (a) the module docstring, and (b) my recent by Eric S. Raymond · 24 years ago
  26. c72c3be Fix bugs in readinst(): by Andrew M. Kuchling · 24 years ago
  27. a4e75d7 Patch #100854 from jhylton: eliminate compiler warnings in pyexpat: by Andrew M. Kuchling · 24 years ago
  28. 9e3d73a Fix mixed mallocs: re->re_patbuf.buffer is allocated with std malloc(). by Vladimir Marangozov · 24 years ago
  29. 56509a3 new test for posixpath module by Skip Montanaro · 24 years ago
  30. e809b00 new test file for posixpath module by Skip Montanaro · 24 years ago
  31. 618e25d Errare humanum est. by Peter Schneider-Kamp · 24 years ago
  32. e17fd2a Got rid of __SC__ ifdefs. by Jack Jansen · 24 years ago
  33. cbf630f Include macglue.h for some function prototypes, and renamed a few by Jack Jansen · 24 years ago
  34. 28fc880 Include macglue.h on the macintosh, so function prototypes are in scope. by Jack Jansen · 24 years ago
  35. e4b4863 One more include of limits.h (possibly to be moved elsewhere when there is by Jack Jansen · 24 years ago
  36. 1af5b08 Removed guesstabsize.c, which is obsolete. by Jack Jansen · 24 years ago
  37. 4ceaa03 - Removed guesstabsize.c, which is obsolete. by Jack Jansen · 24 years ago
  38. 9ae898b ANSIfication step 2: make sure all needed prototypes are available, and all needed by Jack Jansen · 24 years ago
  39. 5e80a75 Added a declaration of fileno() if we use GUSI. Not sure whether it should go here or in pyport.h really... by Jack Jansen · 24 years ago
  40. 85152b9 Fiddled declaration/implementation of setcallback() so that it is ansifyable. by Jack Jansen · 24 years ago
  41. 88887aa small updates to string_join: by Jeremy Hylton · 24 years ago
  42. 672fac0 satisfy the -Wall: remove two unused local variables and unused ins function by Jeremy Hylton · 24 years ago
  43. d88296d ANSIfication step 1: get rid of Py_PROTO and Py_FPROTO. by Jack Jansen · 24 years ago
  44. 4d4daed Fix incomplete merge of Ping's SyntaxError enhancement patch (my fault). by Fred Drake · 24 years ago
  45. 7399b9e Moshe Zadka <mzadka@geocities.com>: by Fred Drake · 24 years ago
  46. 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 24 years ago
  47. 88e1932 fixed a warning in getsockaddrlen by Peter Schneider-Kamp · 24 years ago
  48. 7f589fd add expandtabs command (-e) change eliminate to delete (-d) by Peter Schneider-Kamp · 24 years ago
  49. acab3d6 Change the table in the pyexpat.errors module to a series of datadesc by Fred Drake · 24 years ago
  50. fff9e20 fix bug #42 reported by Andrew Dalke by Jeremy Hylton · 24 years ago
  51. b35de5b Neil Schemenauer <nascheme@enme.ucalgary.ca>: by Fred Drake · 24 years ago
  52. 5f1b270 Bug fix: ? and ! were not full aliases for `help' and `shell' as implied in by Eric S. Raymond · 24 years ago
  53. 7a11671 fixed inconsistent use of tab and spaces by Peter Schneider-Kamp · 24 years ago
  54. d3cf692 Add test of resize() method of mmap objects by Andrew M. Kuchling · 24 years ago
  55. e0d0090 Docstring changes. by Andrew M. Kuchling · 24 years ago
  56. 566d8a6 Jeremy Hylton: better error message for unicode coercion failure by Marc-André Lemburg · 24 years ago
  57. 771d067 string_join(): Some cleaning up of reference counting. In the by Barry Warsaw · 24 years ago
  58. 20f41b6 add more tests of string.join variants to run_method_tests by Jeremy Hylton · 24 years ago
  59. 4904829 fix two refcount bugs in new string_join implementation: by Jeremy Hylton · 24 years ago
  60. dc0c031 Now that prototypes are in scope, the compiler gives legit wngs by Tim Peters · 24 years ago
  61. 194e43e two changes to string_join: by Jeremy Hylton · 24 years ago
  62. 663809e -- removed get_default compatibility kludge by Fredrik Lundh · 24 years ago
  63. dde6164 - changed hash calculation for unicode strings. the new by Fredrik Lundh · 24 years ago
  64. 417c489 Give ConfigParser the capability to set as well as read options, and to write by Eric S. Raymond · 24 years ago
  65. 3e3175b ANSI-fication (fixed on parameter list I messed up in the patch) by Peter Schneider-Kamp · 24 years ago
  66. 8bc8f0d ANSI-fication by Peter Schneider-Kamp · 24 years ago
  67. 3646366 ANSI-fication, added #ifdef construction in mpz_coerce by Peter Schneider-Kamp · 24 years ago
  68. f82b04e factor out test definitions to string_tests module by Jeremy Hylton · 24 years ago
  69. fd54757 add isalpha and isalnum methods by Jeremy Hylton · 24 years ago
  70. cb27c35 ANSI-fication, not really tested, but should (hopefully) compile by Peter Schneider-Kamp · 24 years ago
  71. 6a85027 ANSI-fication of the SGI modules (note that svmodule.c and sgimodule.c by Peter Schneider-Kamp · 24 years ago
  72. 1072334 - stupid typo. by Fredrik Lundh · 24 years ago
  73. c716684 Add linker flag -export-dynamic so symbols in libpython*.a are exported. by Guido van Rossum · 24 years ago
  74. 44328e6 -- get rid of a compiler warning on unix. (as reported by Fredrik Lundh · 24 years ago
  75. 1bbddd0 Added the line 'Testing UTF-16 code point order comparisons... done." by Guido van Rossum · 24 years ago
  76. 964f123 Adapted for Python 2.0 under RH Linux. by Guido van Rossum · 24 years ago
  77. fb8849c remove prints of file objects from _test by Jeremy Hylton · 24 years ago
  78. a5ae490 expect message "no regression test case for method 'encode' by Jeremy Hylton · 24 years ago
  79. a48dbde Patch from Joe Eaton <jeaton@hostway.net> (SF#100741) to fix following problem: by Andrew M. Kuchling · 24 years ago
  80. 39e0e5a ANSI-fication by Peter Schneider-Kamp · 24 years ago
  81. 7d0c71a ANSI-fication by Peter Schneider-Kamp · 24 years ago
  82. 286da3b ANSI-fying by Peter Schneider-Kamp · 24 years ago
  83. 41c36ff ANSI-fication by Peter Schneider-Kamp · 24 years ago
  84. 416d413 ANSI-fication by Peter Schneider-Kamp · 24 years ago
  85. e89b156 ANSI-fication by Peter Schneider-Kamp · 24 years ago
  86. c4bc0e0 ANSI-fication by Peter Schneider-Kamp · 24 years ago
  87. 0659b4a ANSI-fication by Peter Schneider-Kamp · 24 years ago
  88. 3707efe ANSI-fication by Peter Schneider-Kamp · 24 years ago
  89. a788a7f ANSI-fication by Peter Schneider-Kamp · 24 years ago
  90. fe74263 ANSI-fication by Peter Schneider-Kamp · 24 years ago
  91. 8235f1c ANSI-fication by Peter Schneider-Kamp · 24 years ago
  92. f1ca898 ANSI-fication by Peter Schneider-Kamp · 24 years ago
  93. faaad37 ANSI-fication (and test if committing files works now) by Peter Schneider-Kamp · 24 years ago
  94. f985064 Better error handling of bad entity references. Before when an & in by Sjoerd Mullender · 24 years ago
  95. b16714b Initialize the return value in collect_generations() since it is updated by Vladimir Marangozov · 24 years ago
  96. 14a4d88 Remove the "1" that Tim sticked to the preprocessor symbol for unknown reasons by Vladimir Marangozov · 24 years ago
  97. d8a9332 A small comment fix just to make sure I got my cvs/ssh setup right. by Vladimir Marangozov · 24 years ago
  98. 859bad0 Guido said include these in the Great ANSI-fication, so here they are! by Fred Drake · 24 years ago
  99. 9ac81f6 - changed the nt.popen2 return values back to by Fredrik Lundh · 24 years ago
  100. 0466132 - repaired locale.py for non-windows platforms. the try/except by Fredrik Lundh · 24 years ago