1. 8b82baa In the HTTP reply header, be more accepting in the HTTP version. by Guido van Rossum · 28 years ago
  2. 16f9fd2 Added a test script for dbmmodule.c and added it to testall.py and by Roger E. Masse · 28 years ago
  3. 3ac30af Added test_new by Barry Warsaw · 28 years ago
  4. 7536238 new test script for cryptmodule.py by Roger E. Masse · 28 years ago
  5. b6b85dd Test script/output for cryptmodule.c added to testall.py and testall.out by Roger E. Masse · 28 years ago
  6. 3daddda New test module for complex math module by Roger E. Masse · 28 years ago
  7. b710357 Added test_cmath.py to test complex math module by Roger E. Masse · 28 years ago
  8. 3ab26b9 (testall.py): Slightly improved test harness to make it easier to add by Barry Warsaw · 28 years ago
  9. 4985283 Added test_strop by Barry Warsaw · 28 years ago
  10. ad522fa Added tests of all strop module functions, and touching of module variables by Barry Warsaw · 28 years ago
  11. 6c832eb Added test_array output line. by Guido van Rossum · 28 years ago
  12. 8db1b07 module to test the arraymodule created and added to testall.py by Roger E. Masse · 28 years ago
  13. 6ab7f07 Added test_time by Barry Warsaw · 28 years ago
  14. 5bebca2 Added 'test_time' by Barry Warsaw · 28 years ago
  15. b0c2232 test of time module. not terribly fancy, but it does touch every by Barry Warsaw · 28 years ago
  16. 75eccc5 Unpacker.get_buffer(): new method to access the internal buffer of data by Barry Warsaw · 28 years ago
  17. f06ee5f /usr/local/bin/python -> /usr/bin/env python by Guido van Rossum · 28 years ago
  18. 29e7781 Added safeguard against failure in __del__. by Guido van Rossum · 28 years ago
  19. 40a172c Added ALL='all'. by Guido van Rossum · 28 years ago
  20. 58103d3 Turn leading minus sign into underscore for image widget name -- the by Guido van Rossum · 28 years ago
  21. 27cb8a4 Added support for timezone in date field. getdate_tz() and by Guido van Rossum · 28 years ago
  22. 3c8484e When re-raising an exception raised by a module used internally as by Guido van Rossum · 28 years ago
  23. 3508d60 When removing a messge from all sequences, don't remove from 'cur', by Guido van Rossum · 28 years ago
  24. e08c04c Added 'strict_parsing' option to all parsing functions. This causes a by Guido van Rossum · 28 years ago
  25. 73eba25 Don't require leading '-' on option name to Text.tag_cget by Guido van Rossum · 28 years ago
  26. c5d7e80 Fix the way the Authorization header is sent (how could this have worked?). by Guido van Rossum · 28 years ago
  27. c45289c The usual :-( by Guido van Rossum · 28 years ago
  28. 40f7a55 Get rid of bogus binding of <Delete> to a function that deletes the next by Guido van Rossum · 28 years ago
  29. 16d5b11 Fix truncated paragraph in doc string. Bump version to 2.0. by Guido van Rossum · 28 years ago
  30. 9b67621 Cast mtime gotten from stat() to long int -- else it won't work on the Mac. by Guido van Rossum · 28 years ago
  31. d804bab Make self.rfile unbuffered (self.wfile already is). This should fix by Guido van Rossum · 28 years ago
  32. 1495747 Added support for floating point resolution to Scale.get(). by Guido van Rossum · 28 years ago
  33. 176f10e Get rid of evil workaround for Python 1.4b2 bug. by Guido van Rossum · 28 years ago
  34. 5b1b33c Fix another case where... by Guido van Rossum · 28 years ago
  35. 9cb018e Change the default seeding -- use 8 bits of sub-second precision and by Guido van Rossum · 28 years ago
  36. b6685dc The usual... by Guido van Rossum · 28 years ago
  37. 0c37369 (Tkinter.py): Fixed bug in re-implementation of OptionMenu. by Fred Drake · 28 years ago
  38. 28574b5 (Fred Drake:) Re-wrote the OptionMenu class to allow access to a real by Guido van Rossum · 28 years ago
  39. 008ec68 Added warning not to import directly. by Guido van Rossum · 28 years ago
  40. 4808dcb Allow code objects to be passed to run() and eval(). by Guido van Rossum · 28 years ago
  41. e449af7 Ellipses -> Ellipsis rename (the dictionary really says that it should by Guido van Rossum · 28 years ago
  42. 8741b2b Added Slice and Ellipses types. by Guido van Rossum · 28 years ago
  43. b030bc0 Fix some cases where self.openedurl wasn't set. by Guido van Rossum · 28 years ago
  44. b5fa1cb Don't add names that start with _ by Guido van Rossum · 28 years ago
  45. ca8cdc6 (formatter.py): Simplify NullFormatter definition of add_hor_rule() to match by Fred Drake · 28 years ago
  46. 5b1d9ba Remove RCS crud... Sigh... by Guido van Rossum · 28 years ago
  47. a4a7527 Removed RCS crud from official Python release version. by Guido van Rossum · 28 years ago
  48. b8cc6ae The usual... Sigh... by Guido van Rossum · 28 years ago
  49. 6592f88 Removed debugging print statement by Guido van Rossum · 28 years ago
  50. edaf1c9 Simple test module for strop. by Guido van Rossum · 28 years ago
  51. 3159e1e Change to always call list.append with a single argument. by Guido van Rossum · 28 years ago
  52. 2715bb2 Changes to always call list.append with a single argument. by Guido van Rossum · 28 years ago
  53. b7f48e3 Change to always call list.append with a single argument. by Guido van Rossum · 28 years ago
  54. a97b8ee Set the __file__ attribute of the imported module in both versions of by Guido van Rossum · 28 years ago
  55. ccd8b19 Add provisions to set the (to be documented!) instance variable by Guido van Rossum · 28 years ago
  56. 36fc11e Compromise on test in find_class(): a user-defined function is okay, by Guido van Rossum · 28 years ago
  57. cab3c3b (Tkinter.py): Improve application basename determination to make .py and by Fred Drake · 28 years ago
  58. 4be63d1 Added getparamnames() to Message class -- return a list of all by Guido van Rossum · 28 years ago
  59. 8299e46 Don't auto-install on import. This slows down apps that use by Guido van Rossum · 28 years ago
  60. 3faf9b4 (Tkinter.py): Fixed dumb typo in Misc.tk_setPalette(). by Fred Drake · 28 years ago
  61. fe779a1 Don't mix stdout/stderr. by Guido van Rossum · 28 years ago
  62. cc778eb Add main program similar to pdb. by Guido van Rossum · 28 years ago
  63. 24611f8 Always open file objects in binary mode. by Guido van Rossum · 28 years ago
  64. dfd9cb1 Don't die if an ok file method (e.g. fileno) doesn't exist. by Guido van Rossum · 28 years ago
  65. 3c602d7 (Tkinter.py): Many revisions for Tk 4.X: Added clipboard support, updated by Fred Drake · 28 years ago
  66. e9c515a (Canvas.py): Added definition of CanvasItem.cget() as suggested by by Fred Drake · 28 years ago
  67. e7b9fde 1. Correct typo in FileWrapper.close() (fix by AMK). by Guido van Rossum · 28 years ago
  68. 6244867 Revamped test case and updated doc string. by Guido van Rossum · 28 years ago
  69. 934a4ce Show names of locals in disco (Ka-Ping Yee) by Guido van Rossum · 28 years ago
  70. 1550ff7 Layout and cleanup by Fred by Guido van Rossum · 28 years ago
  71. 28d4ba2 Another batch... by Guido van Rossum · 28 years ago
  72. 6e8ec59 Implement lower by calling lower, not lift. by Guido van Rossum · 28 years ago
  73. 6b7a7e9 Bug fixes in index&icursor suggested by Nils Fischbeck. by Guido van Rossum · 28 years ago
  74. 151fcfd Zapped obsolete opcode LOAD_GLOBALS. by Guido van Rossum · 28 years ago
  75. ba885ff Added linux2 specific code :-( by Guido van Rossum · 28 years ago
  76. 5f8ea10 Fix bogus len() call by Guido van Rossum · 28 years ago
  77. ec577d5 Correct sys.path[0] when used stand-alone by Guido van Rossum · 28 years ago
  78. 974e46c Fix type in loop stripping '__.' from name by Guido van Rossum · 28 years ago
  79. 2ea0509 close module file after loading by Guido van Rossum · 28 years ago
  80. e6ad891 One fix by sjoerd and one suggested by him. Bumped __version__ to 1.5. by Guido van Rossum · 28 years ago
  81. 688bbfc simpler version of the previous fix by Guido van Rossum · 28 years ago
  82. 8535b29 compatibility changes suggested by Jack, by Guido van Rossum · 28 years ago
  83. 2c349bb Rewritten by Lars Wizenius to add long options by Guido van Rossum · 28 years ago
  84. 5c1d1ee Change to allow keyword args for Group, by Guido van Rossum · 28 years ago
  85. 42b78e6 Fixed Entry.select_from() to acually call the "select from" widget by Guido van Rossum · 28 years ago
  86. c204c70 Added logging support. by Guido van Rossum · 28 years ago
  87. e5e46e0 Fixed embarrassing logic bug in read_lines_to_outerboundary(). by Guido van Rossum · 28 years ago
  88. 2caac73 Added Menu.insert*() methods [Fred] by Guido van Rossum · 28 years ago
  89. e1a7a3b Add initial values to variables to avoid crash in __del__ by Guido van Rossum · 28 years ago
  90. f469d5b Get rid of nobody_uid() and import pwd -- not used here. by Guido van Rossum · 28 years ago
  91. 5ab007b Subtle hack so the eps printed is not dependent on the formatting by Guido van Rossum · 28 years ago
  92. a9b60d9 No double underscores for globals please by Guido van Rossum · 28 years ago
  93. a8763e5 Another batch of updates... by Guido van Rossum · 28 years ago
  94. 78c9637 Bump exposed __version__ to 1.4. by Guido van Rossum · 28 years ago
  95. 0c8cf88 Don't die when getuid() or getpid() aren't defined. by Guido van Rossum · 28 years ago
  96. 3df7b5a Don't do truncation to 8+3 format -- this is used on NT file systems! by Guido van Rossum · 28 years ago
  97. c75db0b Added Mime writer module (formerly in Grail) by Guido van Rossum · 28 years ago
  98. cfd8935 typo (cotinue -> continue) by Guido van Rossum · 28 years ago
  99. 8e44991 Three sets of changes from Grail: by Guido van Rossum · 28 years ago
  100. f8abb38 Slightly faster (un)quoting. by Guido van Rossum · 28 years ago