1. 2a1b4a6 For backwards compatibility reasons the global function by Walter Dörwald · 18 years ago
  2. 72d84af Always return firstweekday % 7 instead of complaining on setting. by Walter Dörwald · 18 years ago
  3. aba10cf Turn firstweekday into a property. by Walter Dörwald · 18 years ago
  4. ebed3f6 preparation for 2.5a1 by Anthony Baxter · 18 years ago
  5. a8cd7a2 Add test case for #43581. by Martin v. Löwis · 18 years ago
  6. cf0a2a8 Deal with openbsd's different style of default /etc/hosts by forcing the fqdn by Anthony Baxter · 18 years ago
  7. 93f5b93 The email module's parsedate_tz function now sets the daylight savings by Anthony Baxter · 18 years ago
  8. 9e5eb4f I could have sworn this was part of the change to not abbreviate ABSOLUTE by Neal Norwitz · 18 years ago
  9. b0b20a1 Get ctypes loader working on OSF1 (Tru64) by Neal Norwitz · 18 years ago
  10. cbce280 Don't abbreviate ABS, use long name ABSOLUTE. by Neal Norwitz · 18 years ago
  11. 84c95b9 Fix test_pty on OSF/1 (Tru64). The problem is that the newline gets by Neal Norwitz · 18 years ago
  12. 9cdfa4c Skip the test for sys.stdin.seek(-1) on OSF/1 (Tru64) since it does Bad Things by Neal Norwitz · 18 years ago
  13. b902f4e Use absolute imports by Neal Norwitz · 18 years ago
  14. 480725d Whitespace normalization. by Tim Peters · 18 years ago
  15. 04ee870 Always use firstweekday module 7. by Walter Dörwald · 18 years ago
  16. 7fff58c Readd urllib.quote import as it doesn't cause any harm. by Georg Brandl · 18 years ago
  17. 4696ffb Remove "disgusting hack" in favour of closure (patch #1462235) by Georg Brandl · 18 years ago
  18. c5ffd91 Patch #1463012: remove not working undocumented classes from urllib2 by Georg Brandl · 18 years ago
  19. 720096a Patch #1462790: fix urllib2 ProxyHandler for host:port proxies by Georg Brandl · 18 years ago
  20. 4eb521e bug #1462706: guard against host not having FQDN hostname by Georg Brandl · 18 years ago
  21. ad5177c Patch #624325: urlparse.urlparse() and urlparse.urlsplit() results by Fred Drake · 18 years ago
  22. f878b81 Make firstweekday a simple attribute instead by Walter Dörwald · 18 years ago
  23. 7f6b67c patch #1462498: handle entityrefs in attribute values. by Georg Brandl · 18 years ago
  24. 48d5e50 Bug #947906: Add classes LocaleTextCalendar and LocaleHTMLCalendar, by Walter Dörwald · 18 years ago
  25. 1c5a59f Bug #1458017: make distutils.Log._log more forgiving when passing in by Georg Brandl · 18 years ago
  26. 23fd3d4 add support for the sips: scheme (identical to sip: except for scheme name) by Fred Drake · 18 years ago
  27. d8eaa49 Fix stupid typo. by Tim Peters · 18 years ago
  28. 4423b8c test_timeout(): Disable this new test on all platforms. by Tim Peters · 18 years ago
  29. c51ee69 merged the sqlite-integration branch. by Anthony Baxter · 18 years ago
  30. c17976e Another crack at bug #1460340: make random.sample(dict) by Tim Peters · 18 years ago
  31. c90397a Make test_socket_ssl finally pass on WIn by Georg Brandl · 18 years ago
  32. 8147275 Update version number to 2.5 by Georg Brandl · 18 years ago
  33. dcdfd22 bug #1257988: don't bail out on gethostbyname(gethostname()) failure by Georg Brandl · 18 years ago
  34. d49be30 Disable test_socket_ssl timeout test on Windows. by Georg Brandl · 18 years ago
  35. ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 18 years ago
  36. 338ef7d Bug #1445068: getpass.getpass() can now be given an explicit stream by Georg Brandl · 18 years ago
  37. 22ec80b Patch #1462313, bug #1443328: the pickle modules now can handle classes by Georg Brandl · 18 years ago
  38. 43f08a8 Patch #1380952: fix SSL objects timing out on consecutive read()s by Georg Brandl · 18 years ago
  39. dd2245f Bug #1250170, Patch #1462230: handle socket.gethostname() failures gracefully by Georg Brandl · 18 years ago
  40. 51dbc4c traceback now shows error position for all SyntaxError subclasses, by Georg Brandl · 18 years ago
  41. a6126ba Fix the reference leak in test_generators, by explicitly breaking the cycle by Thomas Wouters · 18 years ago
  42. 58917a6 Bug #947906: An object oriented interface has been added to the calendar by Walter Dörwald · 18 years ago
  43. 46cc702 test_main(): Restore the decimal context that was in by Tim Peters · 18 years ago
  44. ef57567 Repaired a number of errors in this test: by Tim Peters · 18 years ago
  45. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  46. c259cc9 Insert a safety space after numbers as well as names in untokenize(). by Guido van Rossum · 18 years ago
  47. 0d93a23 Try to fix test_loading on openbsd. by Thomas Heller · 18 years ago
  48. 300269a Oops - this should not have gone in. by Thomas Heller · 18 years ago
  49. b320682 Output more info when the test fails. by Thomas Heller · 18 years ago
  50. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  51. 4ef3a23 whitespace normalisation by Anthony Baxter · 18 years ago
  52. 5eca19b Checking in the test for PEP 357. by Armin Rigo · 18 years ago
  53. 67b6d51 Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 18 years ago
  54. 2e550b3 Implementation for patch request #1457316: support --identity option by Phillip J. Eby · 18 years ago
  55. 3c3346d SF bug #1460340: random.sample can raise KeyError by Raymond Hettinger · 18 years ago
  56. 80bb2bb Revert r43399. by Georg Brandl · 18 years ago
  57. f1349cd Bug #1459963: urllib2 now normalizes HTTP header names correctly with title(). by Georg Brandl · 18 years ago
  58. 240ec6b Make the tests succeed with -Qnew: Do not rely on the exact wording of a ZeroDivisionError. by Thomas Heller · 18 years ago
  59. f871270 Make uu use floor division instead of classic division. by Georg Brandl · 18 years ago
  60. 019514e Make test_augassign pass with -Qnew and convert to unittest. by Georg Brandl · 18 years ago
  61. b921a84 Make xdrlib use floor division instead of classic division. by Georg Brandl · 18 years ago
  62. 686eaeb Make test_coercion pass with -Qnew. Converted to unittest on the occasion. by Georg Brandl · 18 years ago
  63. 4054b97 In true regression-test spirit, make sure the by Thomas Wouters · 18 years ago
  64. a33b2bc Add an example of a generator->freevar->cell->generator reference-cycle that by Thomas Wouters · 18 years ago
  65. 96c3f7f Make test_decimal work with -Qnew. by Georg Brandl · 18 years ago
  66. b82cb8d Part of bug 1459808: fiddle test_input_and_raw_input() so it passes w/ -Qnew. by Tim Peters · 18 years ago
  67. 1c5bc1c Part of bug 1459808: fiddle so that this passes with or without -Qnew. by Tim Peters · 18 years ago
  68. 35fd142 Fix contextlib not copying function attributes by Phillip J. Eby · 18 years ago
  69. 849974f dummy_thread needs to support PEP 343 too. by Phillip J. Eby · 18 years ago
  70. 02e1997 Patch #1459476: install PKG-INFO metadata alongside distutils-installed packages. by Phillip J. Eby · 18 years ago
  71. a8da934 Whitespace. by Walter Dörwald · 18 years ago
  72. 33b730e Fix SF bug #1458903 with AST compiler. by Neal Norwitz · 18 years ago
  73. 1c168d8 Bug #1457264: parse http://host?query correctly in urllib by Georg Brandl · 18 years ago
  74. 04855cc Fix typo. by Martin v. Löwis · 18 years ago
  75. 6da56f9 Patch from Aldo Cortesi: expected skips for OpenBSD. by Martin v. Löwis · 18 years ago
  76. c667d05 Provide more debug output, to diagnose OpenBSD test failures. by Martin v. Löwis · 18 years ago
  77. 9f4b632 Allow long objects as a position value of error callbacks returned. by Hye-Shik Chang · 18 years ago
  78. 7545a6b regsub is gone, nothing to ignore by Neal Norwitz · 18 years ago
  79. 2c85d82 Try to handle sys.getfilesystemencoding() returning None. by Neal Norwitz · 18 years ago
  80. e2ac4ab Patch #1443155: Add the incremental codecs support for CJK codecs. by Hye-Shik Chang · 18 years ago
  81. baf05b7 fix typo by Georg Brandl · 18 years ago
  82. c4e94b9 Don't decrement below zero. And add more tests. by Raymond Hettinger · 18 years ago
  83. ccc7bb4 More extensive comment on __exit__ handling, per Guido's request. by Phillip J. Eby · 18 years ago
  84. e33901e Whitespace normalization. by Tim Peters · 18 years ago
  85. 6edd258 Fix a problem with @contextmanager not detecting a broken generator by Phillip J. Eby · 18 years ago
  86. bee0712 Support throw() of string exceptions. by Phillip J. Eby · 18 years ago
  87. 43b00da Revert previous change. Wasn't ready yet. by Raymond Hettinger · 18 years ago
  88. e751c86 Add more tests by Raymond Hettinger · 18 years ago
  89. 4a26633 Revert r42719, because the isinstance() check wasn't redundant; formatting a by Phillip J. Eby · 18 years ago
  90. fd3fcf0 SF Patch #1455676: Simplify using Queues with daemon consumer threads by Raymond Hettinger · 18 years ago
  91. c841bb6 run_module shouldn't hold the import lock when running a script by Nick Coghlan · 18 years ago
  92. cdb7948 Use absolute import. by Neal Norwitz · 18 years ago
  93. b95caff Clarify cases when waitpid might not return self.pid. by Martin v. Löwis · 18 years ago
  94. 478c82d Bug #1183780: Add Popen objects to _active only in __del__. by Martin v. Löwis · 18 years ago
  95. 846d72a Exceptions should inherit from Exception now. by Neal Norwitz · 18 years ago
  96. de868c9 Hmmm, I don't think we wanted to test // twice and / not at all (in this section). by Neal Norwitz · 18 years ago
  97. 5a822fb Exceptions should inherit from Exception now. by Neal Norwitz · 18 years ago
  98. c92157f Relax result test for program mode of quopri. by Martin v. Löwis · 18 years ago
  99. bd8dbab Preserve command name, for later printing of active by Martin v. Löwis · 18 years ago
  100. 83be966 Rewrite pipe code using subprocess, to make sure the by Martin v. Löwis · 18 years ago