1. be5d707 When on MacOSX, and only in a framework build, add by Jack Jansen · 21 years ago
  2. 36d49a9 The identify() description didn't match the code. Fixed. by Jack Jansen · 21 years ago
  3. 20fa675 Allow switching of install dir after creation of preferences. by Jack Jansen · 21 years ago
  4. 5688b7a Add two dictionaries to htmlentitydefs: name2codepoint maps by Walter Dörwald · 21 years ago
  5. a95eab5 Test SystemEvents too. by Jack Jansen · 21 years ago
  6. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 21 years ago
  7. 357981e Add a few errors tests for range(). by Walter Dörwald · 21 years ago
  8. 64976e7 Fix copy & paste error in comment. by Walter Dörwald · 21 years ago
  9. 43bc1f1 Fix the test so that it works even when /etc/group has two entries by Walter Dörwald · 21 years ago
  10. 66e1e50 Fix the test so that it works even when /etc/passwd has two entries by Walter Dörwald · 21 years ago
  11. 6fde1ce - Use the tarfile module to unpack tarfiles. by Jack Jansen · 21 years ago
  12. 299b3df test_range(): The C code changed to raise TypeError in one of these by Tim Peters · 21 years ago
  13. b1ded1e Port test_pwd.py to PyUnit. Check that getpwall() and by Walter Dörwald · 21 years ago
  14. 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 21 years ago
  15. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 21 years ago
  16. 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 21 years ago
  17. 41c99e7 SF patch #720991 by Gary Herron: by Guido van Rossum · 21 years ago
  18. 21664d8 Patch #709178: remove -static option from cygwinccompiler by Jason Tishler · 21 years ago
  19. ae32319 Get test working if gzip support is not available by Neal Norwitz · 21 years ago
  20. 3576066 Oops, _propdeclarations and friends are needed: gensuitemodule uses them by Jack Jansen · 21 years ago
  21. 6008cbd NullTranslations.__init__(): Back out of setting the default charset by Barry Warsaw · 21 years ago
  22. efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 21 years ago
  23. a1ce93f From http://mail.python.org/pipermail/i18n-sig/2003-April/001557.html by Barry Warsaw · 21 years ago
  24. 7f2588c SF patch #706707, time.tzset standards compliance update by Stuart Bishop by Neal Norwitz · 21 years ago
  25. 126f2b7 Avoid creating one of the TestSuite objects. by Fred Drake · 21 years ago
  26. 4ec6824 Fix test_tarfile failure when gzip is not available by Neal Norwitz · 21 years ago
  27. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 21 years ago
  28. 594adac hoist contents of csv submodule up to the package level by Skip Montanaro · 21 years ago
  29. dcae0dc Patch #718551: cygwinccompiler.get_versions() patch by Jason Tishler · 21 years ago
  30. 11d204c Add test for MessageBeep() by Guido van Rossum · 21 years ago
  31. ed538d8 Detabified. Removed dead code. by Guido van Rossum · 21 years ago
  32. a12fe4e - New function sys.call_tracing() allows pdb to debug code by Guido van Rossum · 21 years ago
  33. 70367d3 Patch #709178: remove -static option from cygwinccompiler by Jason Tishler · 21 years ago
  34. 0ae3220 Detabbed. by Jack Jansen · 21 years ago
  35. 058a84f Remove the --verify option in favor of the standard -n/--dry-run option by Andrew M. Kuchling · 21 years ago
  36. cfd5550 add a #! line for unix weenies by Skip Montanaro · 21 years ago
  37. 8805e66 New tests identical to boom and boom2, except using new-style classes. by Tim Peters · 21 years ago
  38. fb2a6cc correct a couple docstring nits by Skip Montanaro · 21 years ago
  39. 730f553 s/referrents/referents/g. Gotta love that referrers remains rife with rs. by Tim Peters · 21 years ago
  40. 0f81ab6 Finished implementing gc.get_referrents(): dealt with error and end by Tim Peters · 21 years ago
  41. f6b8045 Reworked has_finalizer() to use the new _PyObject_Lookup() instead by Tim Peters · 21 years ago
  42. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  43. ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 21 years ago
  44. bf384c2 Reworked move_finalizer_reachable() to create two distinct lists: by Tim Peters · 21 years ago
  45. 2f74fdd test_boom: More comments. Also check that len(gc.garbage) doesn't by Tim Peters · 21 years ago
  46. c377cbf SF bug #715145: unittest.py still uses != in failUnlessEqual by Raymond Hettinger · 21 years ago
  47. dee38ac Add Tim's gc boom test to the test suite. by Jeremy Hylton · 21 years ago
  48. 7fb697b Revert Patch #670715: iconv support. by Martin v. Löwis · 21 years ago
  49. 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 21 years ago
  50. 7ba256f Fix a comment by Barry Warsaw · 21 years ago
  51. 9dd7810 Sigh... The get() and set() commands are not declared in the aete for by Jack Jansen · 21 years ago
  52. 842273b Regenerated with property names with _Prop_ prepended. by Jack Jansen · 21 years ago
  53. bc95605 Properties (like enums) are not in the global namespace but only valid by Jack Jansen · 21 years ago
  54. 3279cb0 Turned the suite compiler into an object. by Jack Jansen · 21 years ago
  55. 18c9b13 - All messages are now dependent on the --verbose option. by Jack Jansen · 21 years ago
  56. 56fbcb5 Remove duplicate test. by Walter Dörwald · 21 years ago
  57. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 21 years ago
  58. fc71026 Subclasses of ObjectSpecifier can now be packed and unpacked. This allows by Jack Jansen · 21 years ago
  59. 397e914 In TalkTo.send(), check that we have access to the window manager, by Jack Jansen · 21 years ago
  60. 068a1e2 Regenerated again, now clases are sorted by code, and with synonyms after by Jack Jansen · 21 years ago
  61. 2dc16f2 Classes have to be sorted by code, not name, and synonyms have to by Jack Jansen · 21 years ago
  62. 1a99cf0 Bump to version 2.5.1 by Barry Warsaw · 21 years ago
  63. 9c505ae test_whitespace_eater_unicode_2(): Test case for SF bug #710498. by Barry Warsaw · 21 years ago
  64. ba1548a __unicode__(): Fix the logic for calculating whether to add a by Barry Warsaw · 21 years ago
  65. 742dde4 SF patch #706338, Fix a few broken links in pydoc by Greg Chapman by Neal Norwitz · 21 years ago
  66. 12a7f96 Patch #712124: Remove obsolete comment. by Martin v. Löwis · 21 years ago
  67. 103d6e7 Support '' as the argument for the setlocale emulation. Fixes #678259. by Martin v. Löwis · 21 years ago
  68. 3163a3b Patch #545300: Support marked sections. by Martin v. Löwis · 21 years ago
  69. 89feabc The socket module now always uses the _socketobject wrapper class, even on by Skip Montanaro · 21 years ago
  70. a942b99 Moved gensuitemodule from Mac/scripts to Lib/plat-mac. Documentation by Jack Jansen · 21 years ago
  71. 7035c98 Move Mac/Windows specific expected skips from each platform list by Neal Norwitz · 21 years ago
  72. 043bbc7 Patch #707701: Expect '??' in event fields. Fixes #698517. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  73. 694570e Regenerated with the new way to get terminology (through AppleEvents), by Jack Jansen · 21 years ago
  74. d6ab153 On OSX the finder will return from an open() event before the application by Jack Jansen · 21 years ago
  75. d4885f8 Sigh: didn't catch all lists that needed to be sorted. Regenerated again. by Jack Jansen · 21 years ago
  76. 9ddac3e make nt altsep forward slash - closes bug 709428 backport candidate by Skip Montanaro · 21 years ago
  77. 7377bec Regenerated (from resource files) with sorting version of gensuitemodule. by Jack Jansen · 21 years ago
  78. c2a7f22 Minimal test suite of the generated packages in plat-mac/lib-scriptpackages. by Jack Jansen · 21 years ago
  79. d9e213e Hide private names beginning with _ (but don't hide __special__ names). by Ka-Ping Yee · 21 years ago
  80. b38bbbd Make module lookup a little more robust (certain kinds of fiddling to by Ka-Ping Yee · 21 years ago
  81. e9638cc Move testing code into "if __name__ == '__main__'" so it's not run on import. by Ka-Ping Yee · 21 years ago
  82. fe11d3e Adds support for the DBEnv->set_timeout() method. by Gregory P. Smith · 21 years ago
  83. 3ae0f7a Replace criterium with criterion. Fixes #705120. by Martin v. Löwis · 21 years ago
  84. e159d58 Temporary bump of the version number. by Barry Warsaw · 21 years ago
  85. cd7051f typed_subpart_iterator(): Fix these to use non-deprecated APIs, by Barry Warsaw · 21 years ago
  86. 8af5677 typed_subpart_iterator(): Fix these to use non-deprecated APIs, by Barry Warsaw · 21 years ago
  87. 97951de Add two tests for simple error cases. by Walter Dörwald · 21 years ago
  88. 590fe02 CommandTests.testgetoutput(): by Thomas Wouters · 21 years ago
  89. 52fbe53 Allow floating point values in ProgressBar. by Jack Jansen · 21 years ago
  90. b46bebf Regenerated with Donovan Prestons patch #702620. by Jack Jansen · 21 years ago
  91. 0529377 Correct error in last checkin noticed by Neal Norwitz. And some more. by Kurt B. Kaiser · 21 years ago
  92. 11c53e2 M PyShell.py M run.py by Kurt B. Kaiser · 21 years ago
  93. e51529d Improve error message handling. by Kurt B. Kaiser · 21 years ago
  94. 5c83bb0 use os.path.realpath() instead of os.readlink() by Just van Rossum · 21 years ago
  95. 5fe9ead Email version 2.5 -- I will now backport this to Python 2.2.3. by Barry Warsaw · 21 years ago
  96. dd42edc Rename variables _seq to _it and seq to it, to emphasize that this is by Guido van Rossum · 21 years ago
  97. bb829b7 Getting rid of macfs. by Jack Jansen · 21 years ago
  98. 3e0196c Adding unicode filename support to FSRefs broke things on MacOS9. "Fixed" by disabling unicode filenames on OS9. by Jack Jansen · 21 years ago
  99. 7e0bc11 Patch 702620 by Donovan Preston: Fix AE inheritance. by Jack Jansen · 21 years ago
  100. 82ad32e only set $PYTHONHOME when building a standalone app. by Just van Rossum · 21 years ago