1. ef57567 Repaired a number of errors in this test: by Tim Peters · 18 years ago
  2. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  3. c259cc9 Insert a safety space after numbers as well as names in untokenize(). by Guido van Rossum · 18 years ago
  4. 0d93a23 Try to fix test_loading on openbsd. by Thomas Heller · 18 years ago
  5. 300269a Oops - this should not have gone in. by Thomas Heller · 18 years ago
  6. b320682 Output more info when the test fails. by Thomas Heller · 18 years ago
  7. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  8. 4ef3a23 whitespace normalisation by Anthony Baxter · 18 years ago
  9. 5eca19b Checking in the test for PEP 357. by Armin Rigo · 18 years ago
  10. 67b6d51 Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 18 years ago
  11. 2e550b3 Implementation for patch request #1457316: support --identity option by Phillip J. Eby · 18 years ago
  12. 3c3346d SF bug #1460340: random.sample can raise KeyError by Raymond Hettinger · 18 years ago
  13. 80bb2bb Revert r43399. by Georg Brandl · 18 years ago
  14. f1349cd Bug #1459963: urllib2 now normalizes HTTP header names correctly with title(). by Georg Brandl · 18 years ago
  15. 240ec6b Make the tests succeed with -Qnew: Do not rely on the exact wording of a ZeroDivisionError. by Thomas Heller · 18 years ago
  16. f871270 Make uu use floor division instead of classic division. by Georg Brandl · 18 years ago
  17. 019514e Make test_augassign pass with -Qnew and convert to unittest. by Georg Brandl · 18 years ago
  18. b921a84 Make xdrlib use floor division instead of classic division. by Georg Brandl · 18 years ago
  19. 686eaeb Make test_coercion pass with -Qnew. Converted to unittest on the occasion. by Georg Brandl · 18 years ago
  20. 4054b97 In true regression-test spirit, make sure the by Thomas Wouters · 18 years ago
  21. a33b2bc Add an example of a generator->freevar->cell->generator reference-cycle that by Thomas Wouters · 18 years ago
  22. 96c3f7f Make test_decimal work with -Qnew. by Georg Brandl · 18 years ago
  23. b82cb8d Part of bug 1459808: fiddle test_input_and_raw_input() so it passes w/ -Qnew. by Tim Peters · 18 years ago
  24. 1c5bc1c Part of bug 1459808: fiddle so that this passes with or without -Qnew. by Tim Peters · 18 years ago
  25. 35fd142 Fix contextlib not copying function attributes by Phillip J. Eby · 18 years ago
  26. 849974f dummy_thread needs to support PEP 343 too. by Phillip J. Eby · 18 years ago
  27. 02e1997 Patch #1459476: install PKG-INFO metadata alongside distutils-installed packages. by Phillip J. Eby · 18 years ago
  28. a8da934 Whitespace. by Walter Dörwald · 18 years ago
  29. 33b730e Fix SF bug #1458903 with AST compiler. by Neal Norwitz · 18 years ago
  30. 1c168d8 Bug #1457264: parse http://host?query correctly in urllib by Georg Brandl · 18 years ago
  31. 04855cc Fix typo. by Martin v. Löwis · 18 years ago
  32. 6da56f9 Patch from Aldo Cortesi: expected skips for OpenBSD. by Martin v. Löwis · 18 years ago
  33. c667d05 Provide more debug output, to diagnose OpenBSD test failures. by Martin v. Löwis · 18 years ago
  34. 9f4b632 Allow long objects as a position value of error callbacks returned. by Hye-Shik Chang · 18 years ago
  35. 7545a6b regsub is gone, nothing to ignore by Neal Norwitz · 18 years ago
  36. 2c85d82 Try to handle sys.getfilesystemencoding() returning None. by Neal Norwitz · 18 years ago
  37. e2ac4ab Patch #1443155: Add the incremental codecs support for CJK codecs. by Hye-Shik Chang · 18 years ago
  38. baf05b7 fix typo by Georg Brandl · 18 years ago
  39. c4e94b9 Don't decrement below zero. And add more tests. by Raymond Hettinger · 18 years ago
  40. ccc7bb4 More extensive comment on __exit__ handling, per Guido's request. by Phillip J. Eby · 18 years ago
  41. e33901e Whitespace normalization. by Tim Peters · 18 years ago
  42. 6edd258 Fix a problem with @contextmanager not detecting a broken generator by Phillip J. Eby · 18 years ago
  43. bee0712 Support throw() of string exceptions. by Phillip J. Eby · 18 years ago
  44. 43b00da Revert previous change. Wasn't ready yet. by Raymond Hettinger · 18 years ago
  45. e751c86 Add more tests by Raymond Hettinger · 18 years ago
  46. 4a26633 Revert r42719, because the isinstance() check wasn't redundant; formatting a by Phillip J. Eby · 18 years ago
  47. fd3fcf0 SF Patch #1455676: Simplify using Queues with daemon consumer threads by Raymond Hettinger · 18 years ago
  48. c841bb6 run_module shouldn't hold the import lock when running a script by Nick Coghlan · 18 years ago
  49. cdb7948 Use absolute import. by Neal Norwitz · 18 years ago
  50. b95caff Clarify cases when waitpid might not return self.pid. by Martin v. Löwis · 18 years ago
  51. 478c82d Bug #1183780: Add Popen objects to _active only in __del__. by Martin v. Löwis · 18 years ago
  52. 846d72a Exceptions should inherit from Exception now. by Neal Norwitz · 18 years ago
  53. de868c9 Hmmm, I don't think we wanted to test // twice and / not at all (in this section). by Neal Norwitz · 18 years ago
  54. 5a822fb Exceptions should inherit from Exception now. by Neal Norwitz · 18 years ago
  55. c92157f Relax result test for program mode of quopri. by Martin v. Löwis · 18 years ago
  56. bd8dbab Preserve command name, for later printing of active by Martin v. Löwis · 18 years ago
  57. 83be966 Rewrite pipe code using subprocess, to make sure the by Martin v. Löwis · 18 years ago
  58. e98ccf6 Forward port MvL's fix in 43227: by Neal Norwitz · 18 years ago
  59. 8142cb6 Damn another occurrence of using as as a keywordf by Neal Norwitz · 18 years ago
  60. 0ae07bd Whitespace normalization. by Tim Peters · 18 years ago
  61. b84de02 Record that test_wait[34] get skipped on native Windows. by Tim Peters · 18 years ago
  62. bb03ac0 Correct API design mistake from rev. 43126: make socket attributes readonly properties. by Georg Brandl · 18 years ago
  63. 59b96c1 Try to repair at least one segfault on the Mac buildbot, by Tim Peters · 18 years ago
  64. cce2267 Plug a leak in the ctypes test suite when tests are run repeatedly. by Thomas Heller · 18 years ago
  65. d59ca8f Accessing unaligned structure fields works now on all architectures. by Thomas Heller · 18 years ago
  66. 46fa48a whitespace n11n by Anthony Baxter · 18 years ago
  67. 05a4559 Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. Schroeder. by Neal Norwitz · 18 years ago
  68. fa86907 SF [ 1231053 ] audioop - alaw encoding/decoding added, code updated by Anthony Baxter · 18 years ago
  69. d5b0c9b Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace() by Neal Norwitz · 18 years ago
  70. 70f05c5 Source file f.flush() after writing; trying to avoid lossage if user by Kurt B. Kaiser · 18 years ago
  71. 6a7ec7c Change raise statement to PEP 8 style. by Walter Dörwald · 18 years ago
  72. e5c5117 Shim for test_email_renamed.py tests. by Barry Warsaw · 18 years ago
  73. 40ef006 Merge email package 4.0 from the sandbox, including documentation, test cases, by Barry Warsaw · 18 years ago
  74. 9ae019b Add tests for the C APIs PyCodec_IncrementalEncoder() and by Walter Dörwald · 18 years ago
  75. ddb84d7 Bug #1353433: be conciliant with spaces in redirect URLs by Georg Brandl · 18 years ago
  76. bc45a3f RFE #567972: Socket objects' family, type and proto properties are by Georg Brandl · 18 years ago
  77. b03cb60 Merge changes from the upstream version: by Thomas Heller · 18 years ago
  78. c72f501 as is on the road to keyword-hood, use a different var name. by Neal Norwitz · 18 years ago
  79. d5f8ec2 Oops, copied the wrong code from keeprefs. Get the right code by Neal Norwitz · 18 years ago
  80. 770a800 Update/expand on comments about leaking tests. by Neal Norwitz · 18 years ago
  81. ddda855 Ignore ctypes leaks, but add a test case so we do not forget. by Neal Norwitz · 18 years ago
  82. 8749316 Try to find a host that responds slower from python.org so this test does not fail on macteagle (G4 OSX.4 in buildbot) by Neal Norwitz · 18 years ago
  83. 23e4086 Fix a test that fails when libGL.so and libGLU.so are not installed (on posix systems). by Thomas Heller · 18 years ago
  84. d71afb2 Set eol-style to native. by Tim Peters · 18 years ago
  85. f8cf13e Update test_winsound to check for a configured sound card (using a VBScript by Trent Mick · 18 years ago
  86. 6bed1c1 Add some versionadded info to new incremental codec docs and fix doco nits. by Neal Norwitz · 18 years ago
  87. 10be10c Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. by Neal Norwitz · 18 years ago
  88. f0e2c07 Spel compatibility write. by Neal Norwitz · 18 years ago
  89. f521de6 Add back an sre.py that should be backwards compatible except for the warning. by Neal Norwitz · 18 years ago
  90. 94a9c09 Rename sre.py -> re.py by Neal Norwitz · 18 years ago
  91. 559e88b Remove re.py, in order to rename sre.py -> re.py (svn seems to require 2 steps). by Neal Norwitz · 18 years ago
  92. 04d1513 The pre module has been gone for a while. Need to go through and find other modules that no longer exists, since errors are silently ignored. by Neal Norwitz · 18 years ago
  93. f8480a7 Instead of relative imports, use (implicitly) absolute ones. by Guido van Rossum · 18 years ago
  94. 197e832 SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError by Walter Dörwald · 18 years ago
  95. f99b816 Whitespace normalization. by Tim Peters · 18 years ago
  96. 13ed60b Fix typo. by Walter Dörwald · 18 years ago
  97. 598f8a0 Don't try to explicitly set path in runpy package tests (tests were broken on Windows) by Nick Coghlan · 18 years ago
  98. 586b83c Don't let cleanup errors mask real errors in the runpy tests by Nick Coghlan · 18 years ago
  99. a2173a1 Catch situations where currentframe() returns None. See SF patch #1447410, this is a different implementation. by Vinay Sajip · 18 years ago
  100. 5424ad8 Make test_runpy close all references to test modules before trying to delete the underlying files by Nick Coghlan · 18 years ago