1. 4795524 Speed it up by using readlines(sizehint). It's still slower than by Guido van Rossum · 24 years ago
  2. a4d18a0 Add test cases based on RFC 1808. So now we actually have a test suite by Fred Drake · 24 years ago
  3. 867952f urlunparse(): Do not add a leading slash to the path if it is empty. by Fred Drake · 24 years ago
  4. 1a7aab7 When a PyCFunction that takes only positional parameters is called with by Fred Drake · 24 years ago
  5. 0ee7d82 No more RCmp. by Neil Schemenauer · 24 years ago
  6. 623116a Sequence repeat works now for in-place multiply with an integer type by Neil Schemenauer · 24 years ago
  7. aa726ba __rcmp__ no longer gets called on instances. Remove the test for it. by Neil Schemenauer · 24 years ago
  8. 38f0223 Numbers no longer compare smaller than all other types. Fix the only by Neil Schemenauer · 24 years ago
  9. 5ab3661 Actually call the object with an __call__ method, instead of just by Jeremy Hylton · 24 years ago
  10. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 24 years ago
  11. e7e694f Use == rather than cmp(). The return value of cmp() is not well defined when by Neil Schemenauer · 24 years ago
  12. 38796d0 Use numbers that can be accurately represented on binary machines. I hope by Neil Schemenauer · 24 years ago
  13. 6d0cee1 Add forgotten import by Andrew M. Kuchling · 24 years ago
  14. 352ca8c Duh. Instead of string.whitespace and string.digits, use isspace() by Guido van Rossum · 24 years ago
  15. fd288c7 Add more tests for compare and coercion in preparation for the coercion by Neil Schemenauer · 24 years ago
  16. a659efe Patch by kragen@pobox.com: When tracing is turned on, lines shorter by Guido van Rossum · 24 years ago
  17. ad4a558 Added test case for legal DOM children by Andrew M. Kuchling · 24 years ago
  18. 291ed4f Patch #102485 ] Check for legal children when adding children to a DOM node by Andrew M. Kuchling · 24 years ago
  19. 1a4d77b Christmas present to myself: changed regrtest in two ways: by Tim Peters · 24 years ago
  20. d31b632 getopt used to sort the long option names, in an attempt to simplify by Tim Peters · 24 years ago
  21. 36cdad1 Fred, THIS NEEDS DOCS! The function docstrings tell the tale. by Tim Peters · 24 years ago
  22. 011ea47 Merge with 1.8 of pulldom.py: Use types.UnicodeType if available, not type(u""). by Martin v. Löwis · 24 years ago
  23. 156c337 Merge changes up to 1.10 from PyXML: by Martin v. Löwis · 24 years ago
  24. 7dd0696 Make Traceback header conform to new traceback ("innermost last" -> by Guido van Rossum · 24 years ago
  25. dd699b6 Fix for SF bug by Tim Peters · 24 years ago
  26. da7bf4e Add test case for SF bug by Tim Peters · 24 years ago
  27. 0cc87f3 Make isspace(chr(32)) return true by Andrew M. Kuchling · 24 years ago
  28. 1e0611b The "context" parameter to the ExternalEntityRefParameter exposes internal by Fred Drake · 24 years ago
  29. 9a1a7dd The regression test for the regex module should not trip the deprecation by Fred Drake · 24 years ago
  30. 49d27c8 Remove superfluous semicolons by Andrew M. Kuchling · 24 years ago
  31. 9f5eeeb Wrapper for _curses_panel module; currently this adds nothing extra by Andrew M. Kuchling · 24 years ago
  32. 04a45e9 Patch #102492, fixing bug #116677: by Andrew M. Kuchling · 24 years ago
  33. c867f74 Change expected message for ValueError, fixing bug #126400 by Andrew M. Kuchling · 24 years ago
  34. 8fe2c12 Add forgotten initialization. Fixes bug #120994, "Traceback with by Andrew M. Kuchling · 24 years ago
  35. 7292e92 Adding a warning about the regsub module. This also disables further by Guido van Rossum · 24 years ago
  36. fad81f0 Be explicit about scheme_chars -- string.letters is locale dependent by Guido van Rossum · 24 years ago
  37. 70f1288 Use binary mode to open "wave" files. by Guido van Rossum · 24 years ago
  38. d1db30b Improve error messages for invalid warning arguments; don't raise by Guido van Rossum · 24 years ago
  39. 5aff775 Make string.translate(s, table) work for Unicode s. Two things are by Guido van Rossum · 24 years ago
  40. 8b26454 Test more split argument combinations: by Guido van Rossum · 24 years ago
  41. 8b74b15 Test some Unicode pickling endcases. by Guido van Rossum · 24 years ago
  42. a31b4ef Minimal fix for the complaints about pickling Unicode objects. (SF by Guido van Rossum · 24 years ago
  43. 99664e4 gdbm.open() no longer accepts garbage in the flags string. Fix the tests. by Neil Schemenauer · 24 years ago
  44. 95b4ec5 Do not assume that types.UnicodeType exists; we might be running in an old by Fred Drake · 24 years ago
  45. 1402ab2 Use the string module instead of string methods; this should still work by Fred Drake · 24 years ago
  46. f16527c Typo caught by /F -- thanks! by Fred Drake · 24 years ago
  47. 2a862c6 Python part of the warnings subsystem. by Guido van Rossum · 24 years ago
  48. 1703cf6 Before calling traceback.print_exc(), call sys.stdout.flush(). This makes by Fred Drake · 24 years ago
  49. 279aa6c DOMException.__init__(): Remember to pass self to Exception.__init__(). by Fred Drake · 24 years ago
  50. 5080b33 Comment out a debugging print statement that triggered a complaint in c.l.py. by Guido van Rossum · 24 years ago
  51. e6e03ea Get rid of string functions. by Guido van Rossum · 24 years ago
  52. c80f182 Get rid of string functions. References to string.whitespace, by Guido van Rossum · 24 years ago
  53. 34735a6 Get rid of string functions. by Guido van Rossum · 24 years ago
  54. b2493f8 Get rid of string functions, except maketrans() (which is *not* obsolete!). by Guido van Rossum · 24 years ago
  55. 4d192b3 Add test case for error message raised by bad % format character by Andrew M. Kuchling · 24 years ago
  56. 3277da0 Update the test suite to cover more ground. by Fred Drake · 24 years ago
  57. f7cf40d Lots of small bug fixes and DOM API conformance improvements: by Fred Drake · 24 years ago
  58. c16adce Adjust PullDOM to use a DOMImplementation instance to create new Document by Fred Drake · 24 years ago
  59. ec126da When raising KeyError, provide the key value that failed. by Fred Drake · 24 years ago
  60. dd80220 Changing allow_reuse_address's default value, and documenting it. by Moshe Zadka · 24 years ago
  61. a63bd1c Untabify! (Barry, this is gonna cost you a bottle of wine! ;) by Fred Drake · 24 years ago
  62. ff87174 Get rid of string module and string exceptions. by Guido van Rossum · 24 years ago
  63. 5d1b5ea Add code to DOMException to ensure it cannot be instantiated directly, by Fred Drake · 24 years ago
  64. 64acf1d Add standard DOM exception hierarchy. by Martin v. Löwis · 24 years ago
  65. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  66. c140131 Change the file's indentation from tabs to 4 spaces per level. by Barry Warsaw · 24 years ago
  67. c7ed0e3 Accept Finn Bock's patch #102208 to hardcode EINVAL to 22 when errno by Barry Warsaw · 24 years ago
  68. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  69. d49056c The ".pth" code knew about the layout of Python trees on unix and by Jack Jansen · 24 years ago
  70. 1072c38 Add popitem(). by Guido van Rossum · 24 years ago
  71. b822c61 Added test for {}.popitem(). by Guido van Rossum · 24 years ago
  72. 988ad2b Changed .getaliases() support to register the new aliases in the by Marc-André Lemburg · 24 years ago
  73. 6bcf4c2 Update the docstring. by Fred Drake · 24 years ago
  74. e1578ce Added tests to avoid regression on bug #125375. by Fred Drake · 24 years ago
  75. 5b7b764 Apply rstrip() to the lines read from _dirfile in _update(), so that a by Guido van Rossum · 24 years ago
  76. 0aee722 Hoepeful fix for SF bug #123924: Windows - using OpenSSL, problem with by Guido van Rossum · 24 years ago
  77. 7c1e5ad Make ConfigParser.Error inherit from Exception. by Fred Drake · 24 years ago
  78. c6c2838 (Patch #102698) Fix for a bug reported by Wade Leftwich: by Andrew M. Kuchling · 24 years ago
  79. 23f26ce Fix `credits' to credit the Jython developers when running under that by Barry Warsaw · 24 years ago
  80. f7e84e1 Two changes: by Sjoerd Mullender · 24 years ago
  81. 3d5f7e8 Add test cases for ConfigParser.remove_option() behavior. This includes by Fred Drake · 24 years ago
  82. ff4a23b remove_option(): Use the right variable name for the option name! by Fred Drake · 24 years ago
  83. afb17fc Call of _cmp had wrong number of paramereters. Fixed definition of _cmp. by Moshe Zadka · 24 years ago
  84. 1d99433 Convert Unicode strings to byte strings before passing them into specific by Martin v. Löwis · 24 years ago
  85. 5725d1e Backing out my changes. Improved version coming soon to a Source Forge near you! by Moshe Zadka · 24 years ago
  86. 1a62750 Added .first{item,value,key}() to dictionaries. by Moshe Zadka · 24 years ago
  87. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 24 years ago
  88. 15ffc71 Slight improvement to Unicode test suite, inspired by patch #102563: by Guido van Rossum · 24 years ago
  89. f8baad0 Patch by Finn Bock to support PyStringMap in Jython. by Guido van Rossum · 24 years ago
  90. b7f0cef Update test output. by Fred Drake · 24 years ago
  91. a1bde80 testInsertBefore(): Rewritten to actually test insertBefore() somewhat. by Fred Drake · 24 years ago
  92. 4ccf4a1 Reduce the visibility of imported modules for cleaner "from ... import *" by Fred Drake · 24 years ago
  93. cc78e47 Verify that str(a) and repr(a) don't blow up (part of SF patch 102068). by Tim Peters · 24 years ago
  94. 2595a83 Typo for Mac code, fixing SF bug 12195. by Guido van Rossum · 24 years ago
  95. 56baca3 Removing DOS 8x3 support by Guido van Rossum · 24 years ago
  96. f6fc875 Jack Jansen: added 'get_command_list()' method, and Mac-specific code to by Greg Ward · 24 years ago
  97. a66eed6 Implement the suggestion of bug_id=122070: surround tell() call with try/except. by Guido van Rossum · 24 years ago
  98. 17bfef5 SMTP.connect(): If the socket.connect() raises a socket.error, be sure by Barry Warsaw · 24 years ago
  99. b046b76 Added test cases to detect regression on SourceForge bug #121965. by Fred Drake · 24 years ago
  100. 7fed217 This fixes several bug reports concering memory bloating during large by Barry Warsaw · 24 years ago