1. 8088407 Improved by Eric Raymond. by Guido van Rossum · 26 years ago
  2. 716b784 # Make tabnanny happy. by Guido van Rossum · 26 years ago
  3. 3ad9dd5 Improved by Eric Raymond. by Guido van Rossum · 26 years ago
  4. c94f16f Oops! Of course, Tim is right -- when the item is not a hex number, by Guido van Rossum · 26 years ago
  5. 52e86ad Speed-up unquote(), inspired by post from Daniel Walton. by Guido van Rossum · 26 years ago
  6. 1cd4d52 Remove RCS and #! cruft at top. by Guido van Rossum · 26 years ago
  7. 88b63b8 Allow binding a Tcl command (given as a string) as well as a Python function. by Guido van Rossum · 26 years ago
  8. 0185283 Treat "HEAD" same as "GET", so that CGI scripts won't fail. by Guido van Rossum · 26 years ago
  9. 2349015 Rewrite the (test) main program so that when used as a script, it can by Guido van Rossum · 26 years ago
  10. b1f0812 Piers' latest version, labeled 2.11. This time he integrated my by Guido van Rossum · 26 years ago
  11. 95e6f70 Eric Raymond added support for ESMTP protocol and corrected some typos by Guido van Rossum · 26 years ago
  12. a93b848 Subsume the interact() function in a class. This should make it by Guido van Rossum · 26 years ago
  13. d9d2625 "if match(x) >= 0:" smells of regex matching; should use "if match(x):" by Guido van Rossum · 26 years ago
  14. 4d40b0a Patch by Eric Raymond: add an optional 'seekable' flag to the by Guido van Rossum · 26 years ago
  15. 5430b43 Bugfix to ESR's code reported by himself: should use hasattr() to test by Guido van Rossum · 26 years ago
  16. cef4c84 Turns out that 'winfo id' returns the id as a hex string, with 0x prefix. by Guido van Rossum · 26 years ago
  17. 268824e Different trick to get the _test() window to pop up. by Guido van Rossum · 26 years ago
  18. eda960a Piers' latest version -- authentication added by Donn Cave. by Guido van Rossum · 26 years ago
  19. e50b0a4 In class _Subfile, make sure read(n) can't read beyond EOF. Also by Guido van Rossum · 26 years ago
  20. 81d10b4 Add __getitem__ to AddressList object, to make it a sequence. by Guido van Rossum · 26 years ago
  21. 4d4ab92 Some extra comments and docstrings, and a new class (AddressList), all by ESR. by Guido van Rossum · 26 years ago
  22. 3249082 Fixed the UDP server -- this never worked. Ray Loyzaga deserves by Guido van Rossum · 26 years ago
  23. d458faa In completer(), return None instead of raising an IndexError when by Guido van Rossum · 26 years ago
  24. c3da02e Don't catch interrupts in getpass() -- the finally clause will reset by Guido van Rossum · 26 years ago
  25. ae9ee73 Use the getpass module instead of having platform-specific echo on/off by Guido van Rossum · 26 years ago
  26. 6925661 With the recent change that makes numbers compare smaller than anything, by Guido van Rossum · 26 years ago
  27. 08636f0 Now that test_MimeWriter is untabified, do the same here! by Guido van Rossum · 26 years ago
  28. cff311a Be more careful than the previous patch. The default content-type by Guido van Rossum · 26 years ago
  29. e894fc0 Support new overridable method, isheader() (ESR). by Guido van Rossum · 26 years ago
  30. c7bb857 Some changes suggested/provided by Eric Raymond: by Guido van Rossum · 26 years ago
  31. 1f40cd6 Add the __doc__ string from the original module on copy_none(). by Guido van Rossum · 26 years ago
  32. dd47ec9 Default content-type to application/x-www-form-urlencoded at the top by Guido van Rossum · 26 years ago
  33. e614fb1 Changed runs of 8 spaces to tab -- to satisfy the tab nanny. by Guido van Rossum · 26 years ago
  34. 068ad97 Untabified -- to satisfy the tab nanny. by Guido van Rossum · 26 years ago
  35. 5a43e1a Get rid of tabnanny's last complaints. by Guido van Rossum · 26 years ago
  36. aa2a7a4 From: "Tim Peters" <tim_one@msn.com> by Guido van Rossum · 26 years ago
  37. fe02efd getint() now raises ValueError, not TclError, on errors. by Guido van Rossum · 26 years ago
  38. 3c46234 Remove Emacs and #! cruft. by Guido van Rossum · 26 years ago
  39. d659693 Improve the self-test code a bit: read a host from sys.argv[1] if set, by Guido van Rossum · 26 years ago
  40. cc20b76 Add comments explaining thread unsafety of this code. by Guido van Rossum · 26 years ago
  41. d03e119 Make gauss() semi-thread-safe. It can still give duplicate results, by Guido van Rossum · 26 years ago
  42. b39e461 Two places where _time() should be used said time.time(), which by Guido van Rossum · 26 years ago
  43. 6884af7 Piers Lauders' latest version, with some of my own changes reapplied. by Guido van Rossum · 26 years ago
  44. 1ad0071 Patch by Lars Marius Garshol: by Guido van Rossum · 26 years ago
  45. 2b9d029 add handler for JPython's org.python.core.PyStringMap object, which by Jeremy Hylton · 26 years ago
  46. 16653cb Add Tim's worst case scenario. by Guido van Rossum · 26 years ago
  47. 7462942 Added some tests to make sure that long->int conversions near by Guido van Rossum · 26 years ago
  48. 5b34ec1 Fixed spelling in comment: "RFC", not "RFX". by Fred Drake · 26 years ago
  49. e9387ea introduce a new platform-specific variable: os.linesep is the by Guido van Rossum · 26 years ago
  50. 26fd982 Change the last 4-space indent into a 1-tab indent. by Guido van Rossum · 26 years ago
  51. 7ef2a1d Shouldn't use newdir.dir(), which no longer exists! by Guido van Rossum · 26 years ago
  52. c913206 knownfiles: Add the default installation dirs for Apache by Fred Drake · 26 years ago
  53. b26a1b4 Use random instead of whrandom. by Guido van Rossum · 26 years ago
  54. 33d7f1a Add Interfaces to replace remaining needs for importing whrandom. by Guido van Rossum · 26 years ago
  55. 0bd5433 Get rid of nearly all clals to self._do -- turns out self.tk.call can by Guido van Rossum · 26 years ago
  56. 4941341 guess_extension(): Revise documentation string to be more clear. If not by Fred Drake · 26 years ago
  57. 5f4fb91 Test that "import sys.imp" fails as it should. by Guido van Rossum · 26 years ago
  58. 5109ffd guess_extension(): New function. Performs a reverse mapping from MIME type by Fred Drake · 26 years ago
  59. 67133e2 Neatify the _timezones table and remove a misleading comment about by Guido van Rossum · 26 years ago
  60. 3130b7a Fixed typo in docstring: suffixes_map --> suffix_map. by Fred Drake · 26 years ago
  61. 4658682 Subject: bug fixes for imaplib.py by Guido van Rossum · 26 years ago
  62. 7beaad4 Add file extension .xml, mapping it to text/xml. by Guido van Rossum · 26 years ago
  63. ee918cb Fix bug reported by Harri Pasanen: gzip + cPickle doesn't work. The by Jeremy Hylton · 26 years ago
  64. 01fc65d From: conrad@cgl.ucsf.edu (Conrad Huang %CGL) by Guido van Rossum · 26 years ago
  65. b298a30 Reduce memory requirements. by Guido van Rossum · 26 years ago
  66. 03e35c5 Add a few doc strings. by Guido van Rossum · 26 years ago
  67. ea176b6 benchmark for list.sort() by Guido van Rossum · 26 years ago
  68. b1b4f94 Make Tim O'Malley's requested change: in FieldStorage.__init__(), when by Guido van Rossum · 26 years ago
  69. 073b829 When a file name is selected ("OK" button, <Return> in the filename entry), by Fred Drake · 26 years ago
  70. e7b6e39 New files from Thomas Gellekum by Guido van Rossum · 26 years ago
  71. d618c91 Added table of WSA error codes. by Guido van Rossum · 26 years ago
  72. e0c0da9 Patches to make the proxy code work again. (Why does that always break by Guido van Rossum · 26 years ago
  73. a986bb7 Take out the check for AUTH-LOGIN or AUTH=LOGIN in login() -- some by Guido van Rossum · 26 years ago
  74. b485224 REMOVE samefile(), sameopenfile(), samestat() -- these cannot be made by Guido van Rossum · 26 years ago
  75. e365a59 Change the names of all methods in the Wm class: they are now by Guido van Rossum · 26 years ago
  76. 0132f69 Another optimization, probably of negligeable effect: instead of by Guido van Rossum · 26 years ago
  77. dc59340 In _bind(), found a way to test for break without a temp variable. by Guido van Rossum · 26 years ago
  78. f975699 Save a tiny bit of time: self.tk.call takes a tuple argument so it's by Guido van Rossum · 26 years ago
  79. f0c891a Import MacOS at the top instead of insize Tk.__init__() -- the latter by Guido van Rossum · 26 years ago
  80. 7e6d18c Replace all calls to acquire_lock() and release_lock() with acquire() by Guido van Rossum · 26 years ago
  81. 57a0661 On the Mac, create the Temporary Items folder if it does not exist yet. (Jack) by Guido van Rossum · 26 years ago
  82. 9c93a69 Put quotes around the filename, so spaces in filenames work. (Jack) by Guido van Rossum · 26 years ago
  83. 53117ae typo in error message (fname vs. file). (Jack) by Guido van Rossum · 26 years ago
  84. b86ba12 Support byte-swapped dbhash (bsddb) files. Found by Ben Sayer. by Guido van Rossum · 26 years ago
  85. fc1f64d Oops, I had 'n' and 'c' mixed up in my mind. Get rid of the comment by Guido van Rossum · 26 years ago
  86. a5c0998 Inspired by Ben Sayer, rewritten the code and some of the comments to by Guido van Rossum · 26 years ago
  87. e86271a When setting the event structure fields, don't die when the widget by Guido van Rossum · 26 years ago
  88. 0eae8fb Feeble attempt at making urlopen more robust -- don't call splituser() by Guido van Rossum · 26 years ago
  89. 9291d27 parse150(): Simplify RE used to parse the message a little, taking advantage by Fred Drake · 26 years ago
  90. 446898f Use hex() when outputting the various checksums so the test output is the by Guido van Rossum · 26 years ago
  91. bb189db Small corrections to comments that were cloned from aifc; moreover by Guido van Rossum · 26 years ago
  92. 1740b8d New test sample -- "Nobody expects the Spanish Inquisition!" by Guido van Rossum · 26 years ago
  93. e26132c Move unified findfile() into test_support.py by Guido van Rossum · 26 years ago
  94. 5fd9068 Run the self-test (test.test_MimeWriter) when invoked as a script. by Guido van Rossum · 26 years ago
  95. 2ad816f Add test for MimeWriter module by Guido van Rossum · 26 years ago
  96. e87ed5f Add writelines() method to Compare class. by Guido van Rossum · 26 years ago
  97. 9a34523 As Tim Peters points out, ``from string import *'' should not set re to None. by Guido van Rossum · 26 years ago
  98. de2f708 Fix regexp for attrfind; bug reported by Lars Marius Garshol by Fred Drake · 26 years ago
  99. ac36c64 Open wave files in binary mode. by Fred Drake · 26 years ago
  100. 64d036c Add connect_ex to list of methods. by Guido van Rossum · 26 years ago