1. 8220174 Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c) by Anthony Baxter · 18 years ago
  2. a50794b Patch #1466993: remove wrong comment in socket.py by Georg Brandl · 18 years ago
  3. ce4a9c9 Fix tests so they pass in -R mode by Neal Norwitz · 18 years ago
  4. aa34b6c Get test_optparse to pass in -R mode by stop changing state (COLUMNS env var) by Neal Norwitz · 18 years ago
  5. 349c0ed Convert test_compare to use unittest. Hopefully we can find out by Neal Norwitz · 18 years ago
  6. c5d0dbd Fix a couple of strings that were no-ops. urllib.open_file was a docstring by Neal Norwitz · 18 years ago
  7. a31bf18 glob('anything*/') would fail because isdir is in os.path, not os. by Neal Norwitz · 18 years ago
  8. e0bb597 test_timeout(): This test was added during Bug Day, but disabled by Tim Peters · 18 years ago
  9. 7f5b6f4 Fix bsddb.db.DBError derived exceptions so they can be unpickled. by Gregory P. Smith · 18 years ago
  10. 7846f4d missing 'self' from TextCalendar.prweek. by Anthony Baxter · 18 years ago
  11. b4e4165 minor error in uudecode main error handling by Anthony Baxter · 18 years ago
  12. 7d6b895 Whitespace normalization. by Tim Peters · 18 years ago
  13. fff61ea Expose RTLD_LOCAL and RTLD_GLOBAL always from the _ctypes extension module. by Thomas Heller · 18 years ago
  14. 5102c4e Hopefully this makes test_urllib2 have inconsistent leak results by Neal Norwitz · 18 years ago
  15. 04b9403 Fix for failure of test_urllib2 breaking test_mimetypes (SF bug 1464978) by Anthony Baxter · 18 years ago
  16. e94e3b4 In some environments (under screen, in a chroot) curses doesn't support by Anthony Baxter · 18 years ago
  17. 70d044b remove more cruft no longer needed by Fred Drake · 18 years ago
  18. 9ea179f remove much of the Python-version compatibility cruft; the minimum Python by Fred Drake · 18 years ago
  19. fb8f83b One test still fails on the ia64 debian box. by Thomas Heller · 18 years ago
  20. 726dcf3 Use 'ldd' to find the libc library to load. Based on an idea from Matthias Klose. by Thomas Heller · 18 years ago
  21. a2a26b9 whitespace normalisation by Anthony Baxter · 18 years ago
  22. 22495c0 no-one but windows should expect startfile to work by Anthony Baxter · 18 years ago
  23. 9ad18bb we need os.path too for the normal run on windows by Neal Norwitz · 18 years ago
  24. b882f47 Change the import statement so that the test is skipped when by Thomas Heller · 18 years ago
  25. 19fd857 Add a simple test for os.startfile(). by Thomas Heller · 18 years ago
  26. f4d8f39 Make xrange more Py_ssize_t aware, by assuming a Py_ssize_t is always at by Thomas Wouters · 18 years ago
  27. 8ddab27 Fix __import__("") to raise ValueError rather than return None. by Thomas Wouters · 18 years ago
  28. 06853fc Fix test_platform on cygwin. When running from build area, sys.executable by Anthony Baxter · 18 years ago
  29. b2fc21e sqlite on Windows: by Tim Peters · 18 years ago
  30. ed40ea1 Generate line number table entries for except handlers. by Jeremy Hylton · 18 years ago
  31. 7680185 cygwin's curses support isn't up to scratch to run the tests. by Anthony Baxter · 18 years ago
  32. 1b6cab6 Remove debugging prints. by Jeremy Hylton · 18 years ago
  33. 72289a6 Update to pysqlite 2.2.0 by Anthony Baxter · 18 years ago
  34. a7a3cfe Comment out the prints. These appear to be only for debugging purposes. by Neal Norwitz · 18 years ago
  35. 2f327c1 Add lineno, col_offset to excephandler to enable future fix for by Jeremy Hylton · 18 years ago
  36. 9388020 Fix typos; enhance comments on patch for SF #1462485. by Phillip J. Eby · 18 years ago
  37. 9444bd5 Fix SF#1462485: StopIteration raised in body of 'with' statement suppressed by Phillip J. Eby · 18 years ago
  38. 2a1b4a6 For backwards compatibility reasons the global function by Walter Dörwald · 18 years ago
  39. 72d84af Always return firstweekday % 7 instead of complaining on setting. by Walter Dörwald · 18 years ago
  40. aba10cf Turn firstweekday into a property. by Walter Dörwald · 18 years ago
  41. ebed3f6 preparation for 2.5a1 by Anthony Baxter · 18 years ago
  42. a8cd7a2 Add test case for #43581. by Martin v. Löwis · 18 years ago
  43. cf0a2a8 Deal with openbsd's different style of default /etc/hosts by forcing the fqdn by Anthony Baxter · 18 years ago
  44. 93f5b93 The email module's parsedate_tz function now sets the daylight savings by Anthony Baxter · 18 years ago
  45. 9e5eb4f I could have sworn this was part of the change to not abbreviate ABSOLUTE by Neal Norwitz · 18 years ago
  46. b0b20a1 Get ctypes loader working on OSF1 (Tru64) by Neal Norwitz · 18 years ago
  47. cbce280 Don't abbreviate ABS, use long name ABSOLUTE. by Neal Norwitz · 18 years ago
  48. 84c95b9 Fix test_pty on OSF/1 (Tru64). The problem is that the newline gets by Neal Norwitz · 18 years ago
  49. 9cdfa4c Skip the test for sys.stdin.seek(-1) on OSF/1 (Tru64) since it does Bad Things by Neal Norwitz · 18 years ago
  50. b902f4e Use absolute imports by Neal Norwitz · 18 years ago
  51. 480725d Whitespace normalization. by Tim Peters · 18 years ago
  52. 04ee870 Always use firstweekday module 7. by Walter Dörwald · 18 years ago
  53. 7fff58c Readd urllib.quote import as it doesn't cause any harm. by Georg Brandl · 18 years ago
  54. 4696ffb Remove "disgusting hack" in favour of closure (patch #1462235) by Georg Brandl · 18 years ago
  55. c5ffd91 Patch #1463012: remove not working undocumented classes from urllib2 by Georg Brandl · 18 years ago
  56. 720096a Patch #1462790: fix urllib2 ProxyHandler for host:port proxies by Georg Brandl · 18 years ago
  57. 4eb521e bug #1462706: guard against host not having FQDN hostname by Georg Brandl · 18 years ago
  58. ad5177c Patch #624325: urlparse.urlparse() and urlparse.urlsplit() results by Fred Drake · 18 years ago
  59. f878b81 Make firstweekday a simple attribute instead by Walter Dörwald · 18 years ago
  60. 7f6b67c patch #1462498: handle entityrefs in attribute values. by Georg Brandl · 18 years ago
  61. 48d5e50 Bug #947906: Add classes LocaleTextCalendar and LocaleHTMLCalendar, by Walter Dörwald · 18 years ago
  62. 1c5a59f Bug #1458017: make distutils.Log._log more forgiving when passing in by Georg Brandl · 18 years ago
  63. 23fd3d4 add support for the sips: scheme (identical to sip: except for scheme name) by Fred Drake · 18 years ago
  64. d8eaa49 Fix stupid typo. by Tim Peters · 18 years ago
  65. 4423b8c test_timeout(): Disable this new test on all platforms. by Tim Peters · 18 years ago
  66. c51ee69 merged the sqlite-integration branch. by Anthony Baxter · 18 years ago
  67. c17976e Another crack at bug #1460340: make random.sample(dict) by Tim Peters · 18 years ago
  68. c90397a Make test_socket_ssl finally pass on WIn by Georg Brandl · 18 years ago
  69. 8147275 Update version number to 2.5 by Georg Brandl · 18 years ago
  70. dcdfd22 bug #1257988: don't bail out on gethostbyname(gethostname()) failure by Georg Brandl · 18 years ago
  71. d49be30 Disable test_socket_ssl timeout test on Windows. by Georg Brandl · 18 years ago
  72. ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 18 years ago
  73. 338ef7d Bug #1445068: getpass.getpass() can now be given an explicit stream by Georg Brandl · 18 years ago
  74. 22ec80b Patch #1462313, bug #1443328: the pickle modules now can handle classes by Georg Brandl · 18 years ago
  75. 43f08a8 Patch #1380952: fix SSL objects timing out on consecutive read()s by Georg Brandl · 18 years ago
  76. dd2245f Bug #1250170, Patch #1462230: handle socket.gethostname() failures gracefully by Georg Brandl · 18 years ago
  77. 51dbc4c traceback now shows error position for all SyntaxError subclasses, by Georg Brandl · 18 years ago
  78. a6126ba Fix the reference leak in test_generators, by explicitly breaking the cycle by Thomas Wouters · 18 years ago
  79. 58917a6 Bug #947906: An object oriented interface has been added to the calendar by Walter Dörwald · 18 years ago
  80. 46cc702 test_main(): Restore the decimal context that was in by Tim Peters · 18 years ago
  81. ef57567 Repaired a number of errors in this test: by Tim Peters · 18 years ago
  82. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  83. c259cc9 Insert a safety space after numbers as well as names in untokenize(). by Guido van Rossum · 18 years ago
  84. 0d93a23 Try to fix test_loading on openbsd. by Thomas Heller · 18 years ago
  85. 300269a Oops - this should not have gone in. by Thomas Heller · 18 years ago
  86. b320682 Output more info when the test fails. by Thomas Heller · 18 years ago
  87. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  88. 4ef3a23 whitespace normalisation by Anthony Baxter · 18 years ago
  89. 5eca19b Checking in the test for PEP 357. by Armin Rigo · 18 years ago
  90. 67b6d51 Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 18 years ago
  91. 2e550b3 Implementation for patch request #1457316: support --identity option by Phillip J. Eby · 18 years ago
  92. 3c3346d SF bug #1460340: random.sample can raise KeyError by Raymond Hettinger · 18 years ago
  93. 80bb2bb Revert r43399. by Georg Brandl · 18 years ago
  94. f1349cd Bug #1459963: urllib2 now normalizes HTTP header names correctly with title(). by Georg Brandl · 18 years ago
  95. 240ec6b Make the tests succeed with -Qnew: Do not rely on the exact wording of a ZeroDivisionError. by Thomas Heller · 18 years ago
  96. f871270 Make uu use floor division instead of classic division. by Georg Brandl · 18 years ago
  97. 019514e Make test_augassign pass with -Qnew and convert to unittest. by Georg Brandl · 18 years ago
  98. b921a84 Make xdrlib use floor division instead of classic division. by Georg Brandl · 18 years ago
  99. 686eaeb Make test_coercion pass with -Qnew. Converted to unittest on the occasion. by Georg Brandl · 18 years ago
  100. 4054b97 In true regression-test spirit, make sure the by Thomas Wouters · 18 years ago