1. 7db4f24 When using -R, lots of "*** DocTestRunner.merge:" nuisance messages by Tim Peters · 19 years ago
  2. 8e6480c Whitespace normalization. by Tim Peters · 19 years ago
  3. 7f573f7 Add a test for Py_ssize_t. Correct typo in getargs.c. by Georg Brandl · 19 years ago
  4. 07c6071 test_compile can be really long if we are using -u compiler. by Neal Norwitz · 19 years ago
  5. 0cfa58c Remove tests that no longer leak. There is still one leaking generator test by Neal Norwitz · 19 years ago
  6. ba8194b tty isn't supported on all boxes. by Tim Peters · 19 years ago
  7. 57fdcbc reverting r45321: Patch #860326: traceback.format_exception_only() now by Anthony Baxter · 19 years ago
  8. 24c274f Patch #860326: traceback.format_exception_only() now prepends the by Georg Brandl · 19 years ago
  9. 6402998 Fixes bug #1117761 by Gregory P. Smith · 19 years ago
  10. 14c6b46 Closes bug #1149413 by Gregory P. Smith · 19 years ago
  11. 55d031e Fix for a bug found by Armin Rigo, plus test. by Thomas Heller · 19 years ago
  12. 314fce9 Patch #1468808: don't complain if Tkinter is already deleted at the time Font.__del__ is run. by Georg Brandl · 19 years ago
  13. f69a24c Update test_sundry. Many modules have now tests, but by Georg Brandl · 19 years ago
  14. e29002c Bug #1469163: SimpleXMLRPCServer unconditionally attempted to import fcntl. by Anthony Baxter · 19 years ago
  15. bc96609 Patch #1463288: use a context manager to temporarily switch locales. by Walter Dörwald · 19 years ago
  16. d3a9162 Add another little test to make sure we roundtrip multiple list comp ifs ok. by Neal Norwitz · 19 years ago
  17. ced6cdd Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test by Thomas Wouters · 19 years ago
  18. 502348d StreamHandler now checks explicitly for None before using sys.stderr as the stream (see SF bug #1463840). by Vinay Sajip · 19 years ago
  19. 0c46985 Adjust whitespace. by Neal Norwitz · 19 years ago
  20. b94a368 Add whitespace after comma by Neal Norwitz · 19 years ago
  21. 319c47f Try to repair what may be the last new test failure on the by Tim Peters · 19 years ago
  22. 171b868 subclasspropagation(): Squash two more bogus hash(x) == id(x) by Tim Peters · 19 years ago
  23. 413c922 Whitespace normalization. by Tim Peters · 19 years ago
  24. 85b362f specials(): squash another incorrect hash(x) == id(x) by Tim Peters · 19 years ago
  25. 4703211 Updated the warnings, linecache, inspect, traceback, site, and doctest modules by Phillip J. Eby · 19 years ago
  26. 7731dfd Huh. This belonged with the last checkin -- no idea why svn didn't commit it. by Tim Peters · 19 years ago
  27. 6902b44 Try to repair more new buildbot failures in "x86 OpenBSD trunk", due by Tim Peters · 19 years ago
  28. 9bdc85f Fix one of the tests that fails on the "x86 OpenBSD trunk" buildbot, by Tim Peters · 19 years ago
  29. 8845935 Fix one of the tests that fails on the "x86 OpenBSD trunk" buildbot, due by Tim Peters · 19 years ago
  30. 3daf304 Whitespace normalization. by Tim Peters · 19 years ago
  31. a19dc0b DecimalContextTestCase: this permanently changed the by Tim Peters · 19 years ago
  32. bd0c10f test_contextlib wasn't actually being run by regrtest.py. Or more precisely, by Phillip J. Eby · 19 years ago
  33. 93149d9 Minor clarity edit to contextlib per Guido's request. by Phillip J. Eby · 19 years ago
  34. 17de8ff Patch #1467770: Add Popen objects to _active only in __del__. by Martin v. Löwis · 19 years ago
  35. 10acfd0 Patch #1429775: Link Python modules to libpython on linux if by Martin v. Löwis · 19 years ago
  36. b04dee9 Patch #1462222: Fix Tix.Grid. Closes #1036406. by Martin v. Löwis · 19 years ago
  37. 8220174 Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c) by Anthony Baxter · 19 years ago
  38. a50794b Patch #1466993: remove wrong comment in socket.py by Georg Brandl · 19 years ago
  39. ce4a9c9 Fix tests so they pass in -R mode by Neal Norwitz · 19 years ago
  40. aa34b6c Get test_optparse to pass in -R mode by stop changing state (COLUMNS env var) by Neal Norwitz · 19 years ago
  41. 349c0ed Convert test_compare to use unittest. Hopefully we can find out by Neal Norwitz · 19 years ago
  42. c5d0dbd Fix a couple of strings that were no-ops. urllib.open_file was a docstring by Neal Norwitz · 19 years ago
  43. a31bf18 glob('anything*/') would fail because isdir is in os.path, not os. by Neal Norwitz · 19 years ago
  44. e0bb597 test_timeout(): This test was added during Bug Day, but disabled by Tim Peters · 19 years ago
  45. 7f5b6f4 Fix bsddb.db.DBError derived exceptions so they can be unpickled. by Gregory P. Smith · 19 years ago
  46. 7846f4d missing 'self' from TextCalendar.prweek. by Anthony Baxter · 19 years ago
  47. b4e4165 minor error in uudecode main error handling by Anthony Baxter · 19 years ago
  48. 7d6b895 Whitespace normalization. by Tim Peters · 19 years ago
  49. fff61ea Expose RTLD_LOCAL and RTLD_GLOBAL always from the _ctypes extension module. by Thomas Heller · 19 years ago
  50. 5102c4e Hopefully this makes test_urllib2 have inconsistent leak results by Neal Norwitz · 19 years ago
  51. 04b9403 Fix for failure of test_urllib2 breaking test_mimetypes (SF bug 1464978) by Anthony Baxter · 19 years ago
  52. e94e3b4 In some environments (under screen, in a chroot) curses doesn't support by Anthony Baxter · 19 years ago
  53. 70d044b remove more cruft no longer needed by Fred Drake · 19 years ago
  54. 9ea179f remove much of the Python-version compatibility cruft; the minimum Python by Fred Drake · 19 years ago
  55. fb8f83b One test still fails on the ia64 debian box. by Thomas Heller · 19 years ago
  56. 726dcf3 Use 'ldd' to find the libc library to load. Based on an idea from Matthias Klose. by Thomas Heller · 19 years ago
  57. a2a26b9 whitespace normalisation by Anthony Baxter · 19 years ago
  58. 22495c0 no-one but windows should expect startfile to work by Anthony Baxter · 19 years ago
  59. 9ad18bb we need os.path too for the normal run on windows by Neal Norwitz · 19 years ago
  60. b882f47 Change the import statement so that the test is skipped when by Thomas Heller · 19 years ago
  61. 19fd857 Add a simple test for os.startfile(). by Thomas Heller · 19 years ago
  62. f4d8f39 Make xrange more Py_ssize_t aware, by assuming a Py_ssize_t is always at by Thomas Wouters · 19 years ago
  63. 8ddab27 Fix __import__("") to raise ValueError rather than return None. by Thomas Wouters · 19 years ago
  64. 06853fc Fix test_platform on cygwin. When running from build area, sys.executable by Anthony Baxter · 19 years ago
  65. b2fc21e sqlite on Windows: by Tim Peters · 19 years ago
  66. ed40ea1 Generate line number table entries for except handlers. by Jeremy Hylton · 19 years ago
  67. 7680185 cygwin's curses support isn't up to scratch to run the tests. by Anthony Baxter · 19 years ago
  68. 1b6cab6 Remove debugging prints. by Jeremy Hylton · 19 years ago
  69. 72289a6 Update to pysqlite 2.2.0 by Anthony Baxter · 19 years ago
  70. a7a3cfe Comment out the prints. These appear to be only for debugging purposes. by Neal Norwitz · 19 years ago
  71. 2f327c1 Add lineno, col_offset to excephandler to enable future fix for by Jeremy Hylton · 19 years ago
  72. 9388020 Fix typos; enhance comments on patch for SF #1462485. by Phillip J. Eby · 19 years ago
  73. 9444bd5 Fix SF#1462485: StopIteration raised in body of 'with' statement suppressed by Phillip J. Eby · 19 years ago
  74. 2a1b4a6 For backwards compatibility reasons the global function by Walter Dörwald · 19 years ago
  75. 72d84af Always return firstweekday % 7 instead of complaining on setting. by Walter Dörwald · 19 years ago
  76. aba10cf Turn firstweekday into a property. by Walter Dörwald · 19 years ago
  77. ebed3f6 preparation for 2.5a1 by Anthony Baxter · 19 years ago
  78. a8cd7a2 Add test case for #43581. by Martin v. Löwis · 19 years ago
  79. cf0a2a8 Deal with openbsd's different style of default /etc/hosts by forcing the fqdn by Anthony Baxter · 19 years ago
  80. 93f5b93 The email module's parsedate_tz function now sets the daylight savings by Anthony Baxter · 19 years ago
  81. 9e5eb4f I could have sworn this was part of the change to not abbreviate ABSOLUTE by Neal Norwitz · 19 years ago
  82. b0b20a1 Get ctypes loader working on OSF1 (Tru64) by Neal Norwitz · 19 years ago
  83. cbce280 Don't abbreviate ABS, use long name ABSOLUTE. by Neal Norwitz · 19 years ago
  84. 84c95b9 Fix test_pty on OSF/1 (Tru64). The problem is that the newline gets by Neal Norwitz · 19 years ago
  85. 9cdfa4c Skip the test for sys.stdin.seek(-1) on OSF/1 (Tru64) since it does Bad Things by Neal Norwitz · 19 years ago
  86. b902f4e Use absolute imports by Neal Norwitz · 19 years ago
  87. 480725d Whitespace normalization. by Tim Peters · 19 years ago
  88. 04ee870 Always use firstweekday module 7. by Walter Dörwald · 19 years ago
  89. 7fff58c Readd urllib.quote import as it doesn't cause any harm. by Georg Brandl · 19 years ago
  90. 4696ffb Remove "disgusting hack" in favour of closure (patch #1462235) by Georg Brandl · 19 years ago
  91. c5ffd91 Patch #1463012: remove not working undocumented classes from urllib2 by Georg Brandl · 19 years ago
  92. 720096a Patch #1462790: fix urllib2 ProxyHandler for host:port proxies by Georg Brandl · 19 years ago
  93. 4eb521e bug #1462706: guard against host not having FQDN hostname by Georg Brandl · 19 years ago
  94. ad5177c Patch #624325: urlparse.urlparse() and urlparse.urlsplit() results by Fred Drake · 19 years ago
  95. f878b81 Make firstweekday a simple attribute instead by Walter Dörwald · 19 years ago
  96. 7f6b67c patch #1462498: handle entityrefs in attribute values. by Georg Brandl · 19 years ago
  97. 48d5e50 Bug #947906: Add classes LocaleTextCalendar and LocaleHTMLCalendar, by Walter Dörwald · 19 years ago
  98. 1c5a59f Bug #1458017: make distutils.Log._log more forgiving when passing in by Georg Brandl · 19 years ago
  99. 23fd3d4 add support for the sips: scheme (identical to sip: except for scheme name) by Fred Drake · 19 years ago
  100. d8eaa49 Fix stupid typo. by Tim Peters · 19 years ago