1. 0cc87f3 Make isspace(chr(32)) return true by Andrew M. Kuchling · 24 years ago
  2. 1e0611b The "context" parameter to the ExternalEntityRefParameter exposes internal by Fred Drake · 24 years ago
  3. 9a1a7dd The regression test for the regex module should not trip the deprecation by Fred Drake · 24 years ago
  4. 49d27c8 Remove superfluous semicolons by Andrew M. Kuchling · 24 years ago
  5. 9f5eeeb Wrapper for _curses_panel module; currently this adds nothing extra by Andrew M. Kuchling · 24 years ago
  6. 04a45e9 Patch #102492, fixing bug #116677: by Andrew M. Kuchling · 24 years ago
  7. c867f74 Change expected message for ValueError, fixing bug #126400 by Andrew M. Kuchling · 24 years ago
  8. 8fe2c12 Add forgotten initialization. Fixes bug #120994, "Traceback with by Andrew M. Kuchling · 24 years ago
  9. 7292e92 Adding a warning about the regsub module. This also disables further by Guido van Rossum · 24 years ago
  10. fad81f0 Be explicit about scheme_chars -- string.letters is locale dependent by Guido van Rossum · 24 years ago
  11. 70f1288 Use binary mode to open "wave" files. by Guido van Rossum · 24 years ago
  12. d1db30b Improve error messages for invalid warning arguments; don't raise by Guido van Rossum · 24 years ago
  13. 5aff775 Make string.translate(s, table) work for Unicode s. Two things are by Guido van Rossum · 24 years ago
  14. 8b26454 Test more split argument combinations: by Guido van Rossum · 24 years ago
  15. 8b74b15 Test some Unicode pickling endcases. by Guido van Rossum · 24 years ago
  16. a31b4ef Minimal fix for the complaints about pickling Unicode objects. (SF by Guido van Rossum · 24 years ago
  17. 99664e4 gdbm.open() no longer accepts garbage in the flags string. Fix the tests. by Neil Schemenauer · 24 years ago
  18. 95b4ec5 Do not assume that types.UnicodeType exists; we might be running in an old by Fred Drake · 24 years ago
  19. 1402ab2 Use the string module instead of string methods; this should still work by Fred Drake · 24 years ago
  20. f16527c Typo caught by /F -- thanks! by Fred Drake · 24 years ago
  21. 2a862c6 Python part of the warnings subsystem. by Guido van Rossum · 24 years ago
  22. 1703cf6 Before calling traceback.print_exc(), call sys.stdout.flush(). This makes by Fred Drake · 24 years ago
  23. 279aa6c DOMException.__init__(): Remember to pass self to Exception.__init__(). by Fred Drake · 24 years ago
  24. 5080b33 Comment out a debugging print statement that triggered a complaint in c.l.py. by Guido van Rossum · 24 years ago
  25. e6e03ea Get rid of string functions. by Guido van Rossum · 24 years ago
  26. c80f182 Get rid of string functions. References to string.whitespace, by Guido van Rossum · 24 years ago
  27. 34735a6 Get rid of string functions. by Guido van Rossum · 24 years ago
  28. b2493f8 Get rid of string functions, except maketrans() (which is *not* obsolete!). by Guido van Rossum · 24 years ago
  29. 4d192b3 Add test case for error message raised by bad % format character by Andrew M. Kuchling · 24 years ago
  30. 3277da0 Update the test suite to cover more ground. by Fred Drake · 24 years ago
  31. f7cf40d Lots of small bug fixes and DOM API conformance improvements: by Fred Drake · 24 years ago
  32. c16adce Adjust PullDOM to use a DOMImplementation instance to create new Document by Fred Drake · 24 years ago
  33. ec126da When raising KeyError, provide the key value that failed. by Fred Drake · 24 years ago
  34. dd80220 Changing allow_reuse_address's default value, and documenting it. by Moshe Zadka · 24 years ago
  35. a63bd1c Untabify! (Barry, this is gonna cost you a bottle of wine! ;) by Fred Drake · 24 years ago
  36. ff87174 Get rid of string module and string exceptions. by Guido van Rossum · 24 years ago
  37. 5d1b5ea Add code to DOMException to ensure it cannot be instantiated directly, by Fred Drake · 24 years ago
  38. 64acf1d Add standard DOM exception hierarchy. by Martin v. Löwis · 24 years ago
  39. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  40. c140131 Change the file's indentation from tabs to 4 spaces per level. by Barry Warsaw · 24 years ago
  41. c7ed0e3 Accept Finn Bock's patch #102208 to hardcode EINVAL to 22 when errno by Barry Warsaw · 24 years ago
  42. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  43. d49056c The ".pth" code knew about the layout of Python trees on unix and by Jack Jansen · 24 years ago
  44. 1072c38 Add popitem(). by Guido van Rossum · 24 years ago
  45. b822c61 Added test for {}.popitem(). by Guido van Rossum · 24 years ago
  46. 988ad2b Changed .getaliases() support to register the new aliases in the by Marc-André Lemburg · 24 years ago
  47. 6bcf4c2 Update the docstring. by Fred Drake · 24 years ago
  48. e1578ce Added tests to avoid regression on bug #125375. by Fred Drake · 24 years ago
  49. 5b7b764 Apply rstrip() to the lines read from _dirfile in _update(), so that a by Guido van Rossum · 24 years ago
  50. 0aee722 Hoepeful fix for SF bug #123924: Windows - using OpenSSL, problem with by Guido van Rossum · 24 years ago
  51. 7c1e5ad Make ConfigParser.Error inherit from Exception. by Fred Drake · 24 years ago
  52. c6c2838 (Patch #102698) Fix for a bug reported by Wade Leftwich: by Andrew M. Kuchling · 24 years ago
  53. 23f26ce Fix `credits' to credit the Jython developers when running under that by Barry Warsaw · 24 years ago
  54. f7e84e1 Two changes: by Sjoerd Mullender · 24 years ago
  55. 3d5f7e8 Add test cases for ConfigParser.remove_option() behavior. This includes by Fred Drake · 24 years ago
  56. ff4a23b remove_option(): Use the right variable name for the option name! by Fred Drake · 24 years ago
  57. afb17fc Call of _cmp had wrong number of paramereters. Fixed definition of _cmp. by Moshe Zadka · 24 years ago
  58. 1d99433 Convert Unicode strings to byte strings before passing them into specific by Martin v. Löwis · 24 years ago
  59. 5725d1e Backing out my changes. Improved version coming soon to a Source Forge near you! by Moshe Zadka · 24 years ago
  60. 1a62750 Added .first{item,value,key}() to dictionaries. by Moshe Zadka · 24 years ago
  61. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 24 years ago
  62. 15ffc71 Slight improvement to Unicode test suite, inspired by patch #102563: by Guido van Rossum · 24 years ago
  63. f8baad0 Patch by Finn Bock to support PyStringMap in Jython. by Guido van Rossum · 24 years ago
  64. b7f0cef Update test output. by Fred Drake · 24 years ago
  65. a1bde80 testInsertBefore(): Rewritten to actually test insertBefore() somewhat. by Fred Drake · 24 years ago
  66. 4ccf4a1 Reduce the visibility of imported modules for cleaner "from ... import *" by Fred Drake · 24 years ago
  67. cc78e47 Verify that str(a) and repr(a) don't blow up (part of SF patch 102068). by Tim Peters · 24 years ago
  68. 2595a83 Typo for Mac code, fixing SF bug 12195. by Guido van Rossum · 24 years ago
  69. 56baca3 Removing DOS 8x3 support by Guido van Rossum · 24 years ago
  70. f6fc875 Jack Jansen: added 'get_command_list()' method, and Mac-specific code to by Greg Ward · 24 years ago
  71. a66eed6 Implement the suggestion of bug_id=122070: surround tell() call with try/except. by Guido van Rossum · 24 years ago
  72. 17bfef5 SMTP.connect(): If the socket.connect() raises a socket.error, be sure by Barry Warsaw · 24 years ago
  73. b046b76 Added test cases to detect regression on SourceForge bug #121965. by Fred Drake · 24 years ago
  74. 7fed217 This fixes several bug reports concering memory bloating during large by Barry Warsaw · 24 years ago
  75. 4ebf3be a few small optimizations that seem to give a 5-10% speedup; the by Jeremy Hylton · 24 years ago
  76. eefaeb7 move pruneNext method to correct object (doh!) by Jeremy Hylton · 24 years ago
  77. 314e3fb Change the graph structure to contain the code generator object for by Jeremy Hylton · 24 years ago
  78. a59ac0a If a function contains a doc string, remove the doc string node from by Jeremy Hylton · 24 years ago
  79. fad27ae Added 38,642 missing characters to the Unicode database (first-last by Fredrik Lundh · 24 years ago
  80. 24ec6fb track recent change to test_extcall.py by Jeremy Hylton · 24 years ago
  81. 6b4ec51 Fix for SF bug #117241 by Jeremy Hylton · 24 years ago
  82. ebc37b2 -- properly reset groups in findall (bug #117612) by Fredrik Lundh · 24 years ago
  83. add8d86 Fix two typos in __imul__. Closes Bug #117745. by Guido van Rossum · 24 years ago
  84. 7cff7fe Many changes. by Jeremy Hylton · 24 years ago
  85. 628d289 Generated from rev 1.1 of ast.txt by Jeremy Hylton · 24 years ago
  86. 66d2c1f Small optimizations in dispatch method: 1) lookup node's __class__ once by Jeremy Hylton · 24 years ago
  87. 1378bd5 Also point TK_LIBRARY to the appropriate directory. by Guido van Rossum · 24 years ago
  88. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  89. bd6f4fb Insert the current directory to the front of sys.path -- and remove it by Guido van Rossum · 24 years ago
  90. 0702507 Added a test case for the saxutils.prepare_input_source setSystemId bug. by Lars Gustäbel · 24 years ago
  91. 4ced5e7 Fix bug in prepare_input_source (patched by Paul P., sourceforge.net down by Lars Gustäbel · 24 years ago
  92. cfd3bd8 Updated output. by Lars Gustäbel · 24 years ago
  93. 2fc5294 Added some more tests here and there. by Lars Gustäbel · 24 years ago
  94. d038ca8 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  95. 16f6329 Make reindent.py happy (lots of trailing whitespace removed). by Fred Drake · 24 years ago
  96. 098b55a Make reindent happy, but not in the way it planned! by Fred Drake · 24 years ago
  97. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  98. 2e6d25c Use 4-space indents. by Fred Drake · 24 years ago
  99. 2ec80fa Clean up the temporary file when done with it. by Fred Drake · 24 years ago
  100. dce5641 Make sure the temporary file is cleaned up even when we raise TestSkipped. by Fred Drake · 24 years ago