1. 39f77bc Modify _Set to support iteration. by Jeremy Hylton · 23 years ago
  2. d307740 - Expand test for dynamic objects. by Guido van Rossum · 23 years ago
  3. a45da92 Make the output of tests skipped readable (i.e., deliberately break it by Tim Peters · 23 years ago
  4. 9d4fe42 dynamics(): add tests for dynamic *instances* (which are currently by Guido van Rossum · 23 years ago
  5. 08a6403 Test the unary operator changes to the compiler by Jeremy Hylton · 23 years ago
  6. f73e30c Add the list of expected skips for Linux 2.x. Restructured the code a by Guido van Rossum · 23 years ago
  7. a2be2d6 Move line; reported on python-dev by Mark Favas (thanks!). by Tim Peters · 23 years ago
  8. b5b7b78 Teach regrtest which tests we *expect* to skip on Win32. Please teach it by Tim Peters · 23 years ago
  9. 28ccc24 removed some cruft by Steven M. Gava · 23 years ago
  10. a6a4f27 _Condition.wait(): never sleep longer than the timeout time remaining, by Tim Peters · 23 years ago
  11. dbc363c The test assumed that the local pathname convention for "foo" would sort before "foo/bar", which is not true on the mac (where they are "foo" and ":foo:bar", respectively; ":foo" would be fine too, but "foo" is the preferred spelling). Fixed by sorting the output. by Jack Jansen · 23 years ago
  12. d5d8fc5 Replace all type comparisons with isinstance() calls by Jeremy Hylton · 23 years ago
  13. c01e30f repair posix fonts fix by Steven M. Gava · 23 years ago
  14. 58682b7 Only catch the errors that can actually occur, as reported in bug #411881. by Martin v. Löwis · 23 years ago
  15. abdfc41 support for help menu changes by Steven M. Gava · 23 years ago
  16. 5b3ac8f some re-design by Steven M. Gava · 23 years ago
  17. 6b1ab25 supports about changes by Steven M. Gava · 23 years ago
  18. 0ba4df8 adjust help menu bindings by Steven M. Gava · 23 years ago
  19. cd112f5 Added tests for rich comparison operator functions. Converted tests to PyUnit. by Fred Drake · 23 years ago
  20. e45763a Add test for SF bug #442833 (multiple inheritance). by Guido van Rossum · 23 years ago
  21. 61cf780 The message accompanying the TypeError exception on a readonly by Guido van Rossum · 23 years ago
  22. f4aa684 [Bug #414032] Make the 'sdist' command work when the distribution contains by Andrew M. Kuchling · 23 years ago
  23. 6d94627 Allow AttributeError as well as TypeError for attribute-less objects. by Guido van Rossum · 23 years ago
  24. 13f4ea2 Remove unused variable by Andrew M. Kuchling · 23 years ago
  25. 5079fe0 Fix typo caught by PyChecker by Andrew M. Kuchling · 23 years ago
  26. 665f248 Add forgotten import by Andrew M. Kuchling · 23 years ago
  27. 981a178 Wrap a comment to fit in 80 columns. by Fred Drake · 23 years ago
  28. db988b1 Use .get_license() by Andrew M. Kuchling · 23 years ago
  29. fa7dc57 [Bug #412271, bug #449009] Use 'license' as the attribute name, by Andrew M. Kuchling · 23 years ago
  30. fcfc8d5 Patch #441091 from Finn Bock: the more advanced flush options are not by Andrew M. Kuchling · 23 years ago
  31. 315cd29 Disable the sub() optimization until Fredrik has time to look into SF by Guido van Rossum · 23 years ago
  32. e056e4d Check in a testcase for SF bug #449000: re.sub(r'\n', ...) broke. by Guido van Rossum · 23 years ago
  33. a8b5f7d Remove hard-coded NT constants that are already defined in errno on NT. by Jeremy Hylton · 23 years ago
  34. 9b75dca Expose nl_langinfo through locale where available. by Martin v. Löwis · 23 years ago
  35. ab9ba27 Whitespace normalization. by Tim Peters · 23 years ago
  36. c7ca3ff Skip test_mhlib on Windows -- too many Unix assumptions. by Tim Peters · 23 years ago
  37. e4deb95 Fix two bugs detected by PyChecker: there's no need for redundant by Guido van Rossum · 23 years ago
  38. 6386a4c Import UnknownFileError by Andrew M. Kuchling · 23 years ago
  39. 106ffdb Import the errno module by Andrew M. Kuchling · 23 years ago
  40. affadeb Use correct variable name by Andrew M. Kuchling · 23 years ago
  41. eaa77e2 Added tests for operator.floordiv() and operator.truediv(). by Fred Drake · 23 years ago
  42. 3720261 Restore the test for 'object' that I removed when object was by Guido van Rossum · 23 years ago
  43. a995c91 Use type(x).__name__ to get the name of the type instead of parsing by Guido van Rossum · 23 years ago
  44. 0263c80 Unittests for mhlib, by Nick Mathewson. by Guido van Rossum · 23 years ago
  45. 55c12d4 SF patch #403640: incomplete proxy handling in URLLIB by Tim Peters · 23 years ago
  46. f0713d3 SF Patch #420725 by Walter Doerwald: by Guido van Rossum · 23 years ago
  47. c8718c1 Patch #403514: precompute _subst_format_str to avoid a call to by Martin v. Löwis · 23 years ago
  48. 3c7a25a Applied SF patch #438424 by Josh Cogliati: by Guido van Rossum · 23 years ago
  49. dbdcb0f Regenerate for glibc 2.2.3. by Martin v. Löwis · 23 years ago
  50. 4414933 Regenerate for Solaris 8. by Martin v. Löwis · 23 years ago
  51. 8cc965c Patch #448474: Add support for tell() and seek() to gzip.GzipFile. by Martin v. Löwis · 23 years ago
  52. 64deef2 A test suite for binary operators, disguised as a rational number class. by Guido van Rossum · 23 years ago
  53. 034cbf1 Typo fix (spelling mistake in error message). by Greg Ward · 23 years ago
  54. ff88556 Patch #449083: Use builtins to initalize the module. by Martin v. Löwis · 23 years ago
  55. e00dde2 Merged in bugfix from PyUnit CVS for problem reported by Gary Todd. by Steve Purcell · 23 years ago
  56. a38d260 Regenerated token.py to account for new DOUBLESLASH and DOUBLESLASHEQUAL. by Tim Peters · 23 years ago
  57. 96204f5 Add new tokens // and //=, in support of PEP 238. by Guido van Rossum · 23 years ago
  58. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  59. 074c9d2 beginning of work on the conf. handling smarts by Steven M. Gava · 23 years ago
  60. 54e99e8 Fix SF bug [ #447370 ] typo in urllib2.py by Jeremy Hylton · 23 years ago
  61. 16fd338 Apply two small changes to the Windows code, according to SF bug by Guido van Rossum · 23 years ago
  62. 56b5fdd Remove make_re() function; this is no longer needed since _sre and pcre by Fred Drake · 23 years ago
  63. c9fadf9 Add a test that xml.sax.saxutils.XMLGenerator does the right thing by Fred Drake · 23 years ago
  64. dad91dd Make sure XMLGenerator uses quoteattr() instead of escape() to quote by Fred Drake · 23 years ago
  65. 288cd2c Fix the test so it uses IterableUserDict for the "for x in dict" test. by Guido van Rossum · 23 years ago
  66. 2050b65 Remove the __iter__ method from the UserDict class -- it can silently by Guido van Rossum · 23 years ago
  67. c5943b1 Add the NannyNag exception class and the process_tokens() function to by Guido van Rossum · 23 years ago
  68. 15d86c6 Remove the test for the 'object' type -- it can no longer be by Guido van Rossum · 23 years ago
  69. cd73836 silence warnings about import * by Jeremy Hylton · 23 years ago
  70. 230e578 more fleshing out, this time primarily the 'general' page by Steven M. Gava · 23 years ago
  71. e02f904 fix for Bug ID 448100 - "test code using NL instead of CRNL" by Piers Lauder · 23 years ago
  72. f213ccb began font / indentation page by Steven M. Gava · 23 years ago
  73. cbce202 Hack to workaround bug #445984: attempt to import _socket before by Greg Ward · 23 years ago
  74. 60fc707 further work on keybinding page by Steven M. Gava · 23 years ago
  75. c173137 Derived from SF patch #446899 Permit import of .pyw under Windows, from by Tim Peters · 23 years ago
  76. eeee4ec Refactor so that it is easier to work with alternate MIME types databases, by Fred Drake · 23 years ago
  77. e861365 Don't use any characters C doesn't guarantee are safe for text-mode files. by Tim Peters · 23 years ago
  78. 84bb9d8 Fix stupid bug: when migrating these tests from the Zope repository, the by Fred Drake · 23 years ago
  79. 1d4601d Change some comments into docstrings. by Fred Drake · 23 years ago
  80. fffd722 The test opened the binary test data files in text mode! Fixed. by Jack Jansen · 23 years ago
  81. 952d0a5 further work on config dialog, particularly highligthing config by Steven M. Gava · 23 years ago
  82. 4fd06e0 Make sure that WeakValueDictionary[] raises KeyError instead of TypeError by Fred Drake · 23 years ago
  83. c916cdc Miscellaneous minor cleanups. by Fred Drake · 23 years ago
  84. d342c62 This test failed under python -O. by Tim Peters · 23 years ago
  85. 394a47b Unit test for improved package import semantics. by Guido van Rossum · 23 years ago
  86. 02d893c Patch #444359: Remove unused imports. by Martin v. Löwis · 23 years ago
  87. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  88. 722d78f s/endswith/startswith/ by Tim Peters · 23 years ago
  89. 66e1a25 Rewritten version of Finn Bock's SF patch #446907 (Allow jython to by Tim Peters · 23 years ago
  90. b363c1f Turn an octal constant into a hex constant. by Guido van Rossum · 23 years ago
  91. b9d07b5 A more lightweight (and read only) way to view help text by Steven M. Gava · 23 years ago
  92. d721c48 indentation style changed to match existing source by Steven M. Gava · 23 years ago
  93. 885c0bb improve viewfile handling indentation style changed to match existing source by Steven M. Gava · 23 years ago
  94. 6cd441d Add dead imports of modules that are "magically" imported. by Martin v. Löwis · 23 years ago
  95. bbe500e Remove obsolete entries from regen scripts. by Martin v. Löwis · 23 years ago
  96. 2ad2569 Initialize msg to avoid unbound locals. by Martin v. Löwis · 23 years ago
  97. 7d9ed72 activate new about dialog for testing by Steven M. Gava · 23 years ago
  98. 646c65c removed redundant separate idlfefork ver by Steven M. Gava · 23 years ago
  99. 44d3d1a some new dialogs and support files for new about and configuration implementations by Steven M. Gava · 23 years ago
  100. 3fc9582 Amazing. This would open the sound file in text mode. Fixed. SF bug #446219. by Guido van Rossum · 23 years ago