- 2f67756 Silence UnicodeWarning in crazy unittest test. by Michael Foord · 15 years ago
- 92cb4a8 Reduce number of random tests in test_strtod, to avoid hogging buildbot time. by Mark Dickinson · 15 years ago
- 45ad801 Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot tests to complete. by Mark Dickinson · 15 years ago
- 82b34c5 Issue #5211: Fix complex type to avoid implicit calls to by Mark Dickinson · 15 years ago
- 9e9af21 skip tests with a non-ascii cwd when the file system encoding is ascii by Ezio Melotti · 15 years ago
- 18d5a69 Fix for Issue7751: urllib.urlopen("///C|/foo/bar/spam.foo") by Senthil Kumaran · 15 years ago
- e3467d5 Remove e assertIs definitions and use correct assert* methods. by Ezio Melotti · 15 years ago
- 4cc80ca #3426: os.path.abspath now returns unicode when its arg is unicode. by Ezio Melotti · 15 years ago
- 4e78de8 Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by RFC3986 by Senthil Kumaran · 15 years ago
- cc43b56 - apply patch from issue 7005 - add corresponding documentation by Fred Drake · 15 years ago
- c2294dd Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode issues when constructing failure messages. Issue 7956 by Michael Foord · 15 years ago
- 225a099 unittest.TestCase uses safe_repr for producing failure messages. Partial fix for issue 7956 by Michael Foord · 15 years ago
- 6d8effb Issue #7633: Context method in the decimal module (with the exception by Mark Dickinson · 15 years ago
- e511fc7 #7930: fix stripid by Ezio Melotti · 15 years ago
- 876473b Check that 'd' isn't allowed as an exponent specifier in inputs to the float function. by Mark Dickinson · 16 years ago
- 7c29f07 Issue 5754: tweak shelve doc wording to make it clearer that even when by R. David Murray · 16 years ago
- 8f6a287 #7712: add a temp_cwd context manager to test_support and use it in regrtest to run all the tests in a temporary directory, saving the original CWD in test_support.SAVEDCWD. Thanks to Florent Xicluna who helped with the patch. by Ezio Melotti · 16 years ago
- 1c3abf4 Fix for unittest tests, to be merged to py3k by Michael Foord · 16 years ago
- db43b5a Issue 7893 and Issue 7588 by Michael Foord · 16 years ago
- 42fb6ab Issue #2746: Don't escape ampersands and angle brackets ("&", "<", ">") by Antoine Pitrou · 16 years ago
- 11f5c9e Convert test failure from output-producing to self.fail(). by Georg Brandl · 16 years ago
- fe6349c Make assertMultiLineEqual the default for comparing unicode strings. by Michael Foord · 16 years ago
- 0c4783a Fix missing string formatting placeholder. by Georg Brandl · 16 years ago
- cfc43e9 logging: gingerly re-enabling skipped tests after improving thread sync code in configurator. by Vinay Sajip · 16 years ago
- 9a164ac Issue #7857: Another attempt to keep the buildbots happy. by Vinay Sajip · 16 years ago
- e1ec841 logging: skipped listening tests because they're not working reliably. by Vinay Sajip · 16 years ago
- 7ed8001 Removed spurious print statement in test. by Vinay Sajip · 16 years ago
- 6eedef6 Fix test_fnmatch. by Georg Brandl · 16 years ago
- 841e7f3 Skip test_strtod entirely when correctly-rounded string->float isn't implemented by Mark Dickinson · 16 years ago
- dd25e86 Issue 6003: ZipFile.writestr "compression_type" argument by Ronald Oussoren · 16 years ago
- 2bd52dc assertRaises as context manager now allows you to access exception as documented by Michael Foord · 16 years ago
- a4f46e1 Remove unused imports in test modules. by Georg Brandl · 16 years ago
- dc3694b Rename "exc_value" attribute on assertRaises context manager to "exception". by Georg Brandl · 16 years ago
- 4ad752d Issue #7870: Remove duplicate test methods. Reported by Georg Brandl. by Antoine Pitrou · 16 years ago
- 1224f4a Actually raise on failure, instead of doing nothing. by Mark Dickinson · 16 years ago
- 4dcba97 Add missing global declarations for 'overflowok'; remove 'overflowrequired', which is no longer needed. by Mark Dickinson · 16 years ago
- b86d3fa Remove duplicate test method. by Georg Brandl · 16 years ago
- 308e18b Add a minimal test for fnmatchcase(). by Georg Brandl · 16 years ago
- a34f87f Fix a redefined test method. by Georg Brandl · 16 years ago
- 41dc63f Fix two redefined test methods. by Georg Brandl · 16 years ago
- b3cda98 Fix wrong usage of "except X, Y:". by Georg Brandl · 16 years ago
- 7ae6018 Fix another duplicated test method. by Georg Brandl · 16 years ago
- ab3f5cb A number of APIs in macostools cannot work in 64-bit mode because they by Ronald Oussoren · 16 years ago
- 657514a Issue #7868: logging: added loggerClass attribute to Manager. by Vinay Sajip · 16 years ago
- 12cad20 Add missing import. by Georg Brandl · 16 years ago
- cd4a21b Fix more unbound locals in code paths that do not seem to be used. by Georg Brandl · 16 years ago
- bd564c3 Fix import/access for some identifiers. _TestSharedCTypes does not seem to be executed? by Georg Brandl · 16 years ago
- c7ca56d We heard you like test failures so we put unbound locals in your test so that you can fail while you fail. by Georg Brandl · 16 years ago
- d10d8ee Fix various missing import/unbound name errors. by Georg Brandl · 16 years ago
- 1a0ffe1 Remove duplicate test method. by Georg Brandl · 16 years ago
- d1fa76e Add missing import. by Georg Brandl · 16 years ago
- 28d4f9e testCopysign was defined twice in test_math; combine the definitions by Mark Dickinson · 16 years ago
- df8a303 Fix a few UnboundLocalErrors in test_long. by Georg Brandl · 16 years ago
- 8fd107f Add missing imports. by Georg Brandl · 16 years ago
- 7224350 Add a missing import. by Georg Brandl · 16 years ago
- 239f138 make waiting for the server to start robust by Benjamin Peterson · 16 years ago
- 26a1f72 Remove unused imports from test_logging. by Georg Brandl · 16 years ago
- 7f22443 Issue #7857: Gave server thread more time to get ready, and re-enabled a skipped test. by Vinay Sajip · 16 years ago
- 42d5947 check type_getattro for correctness in a descriptor corner case by Benjamin Peterson · 16 years ago
- 5749d88 Issue #7857: Tentatively re-enabling one test to see effect on buildbots. by Vinay Sajip · 16 years ago
- ce6e4b0 issue #7728: test_timeout was using a hardcoded port, which was by R. David Murray · 16 years ago
- 0877060 unittest.TestLoader creates a TestSuite before calling load_tests. Issue 7799. by Michael Foord · 16 years ago
- 2373926 test_logging: minor tweaks to timeouts, listening tests marked as skipped. by Vinay Sajip · 16 years ago
- bb445a1 Issue #5677: Explicitly forbid write operations on read-only file objects, by Antoine Pitrou · 16 years ago
- 007a618 Issue #7857: test_logging: listener tests disabled for now. by Vinay Sajip · 16 years ago
- 3dd734f Issue #7857: test_logging: listener test now uses find_unused_port(). by Vinay Sajip · 16 years ago
- 565d785 normalize exceptions passed to the __exit__ method #7853 by Benjamin Peterson · 16 years ago
- 4a7ff1d add a test for #7853; the exception must be normalized for with by Benjamin Peterson · 16 years ago
- f7610b2 Added unit test for cfg:// resolution. by Vinay Sajip · 16 years ago
- 28c382f Logging: Implemented PEP 391. by Vinay Sajip · 16 years ago
- dc84f8f Fix a typo in a docstring introduced in r77956. by Brett Cannon · 16 years ago
- 18e4db5 Update a docstring to suggest using importlib.import_module instead of calling __import__ directly. by Brett Cannon · 16 years ago
- c68e9f0 Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942). by Mark Dickinson · 16 years ago
- dde5b94 #7092: Silence more py3k warnings. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
- e81b028 sysconfig.get_scheme_names now returns a sorted tuple by Tarek Ziadé · 16 years ago
- 1f517e1 #7092: Silence py3k warnings in test_exceptions and test_pep352. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
- 8d3f130 Fix idioms and a couple of py3k warnings. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
- 0ac4d4c Silence a couple of -3 warnings by Ezio Melotti · 16 years ago
- 5d62cfe #7092: silence py3k warnings for bsddb. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
- b4b0a29 Issue #7819: Check sys.call_tracing() arguments types. by Victor Stinner · 16 years ago
- f3fa074 - Issue #6939: Fix file I/O objects in the `io` module to keep the original by Antoine Pitrou · 16 years ago
- 7aedb3b fix windows buildbot by Benjamin Peterson · 16 years ago
- ef49096 #7092: silence more -3 and -Wd warnings by Ezio Melotti · 16 years ago
- a2d4653 #7092: silence py3k warnings for deprecated modules by Ezio Melotti · 16 years ago
- 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 16 years ago
- 94c33eb Issue #7610: Reworked implementation of the internal by Antoine Pitrou · 16 years ago
- 654ade3 Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool by Jesse Noller · 16 years ago
- 2deb5c7 raise a clear TypeError when trying to register a non-class by Benjamin Peterson · 16 years ago
- 74c2577 Added named (but not numbered) attributes to sys.getwindowsversion() test. by Eric Smith · 16 years ago
- 59529e1 Switch to test_support.get_attribute. by Eric Smith · 16 years ago
- 514e77e Removed unneeded test. by Eric Smith · 16 years ago
- ee931b7 Issue #7766: Change sys.getwindowsversion() return value to a named tuple and add the additional members returned in an OSVERSIONINFOEX structure. The new members are service_pack_major, service_pack_minor, suite_mask, and product_type. by Eric Smith · 16 years ago
- a43f34c fix an UnboundLocalError when the release file is empty #7773 by Benjamin Peterson · 16 years ago
- 469a05f remove archaic functions from test_support by Ezio Melotti · 16 years ago
- b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 16 years ago
- aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
- c64614e fixed the 64bits tests for get_platform() - mac osx by Tarek Ziadé · 16 years ago
- 0e4e732 Increased the overflow value on test_dealloc to make sure that it is big enough even for wide builds. by Ezio Melotti · 16 years ago
- 5633a80 taking sysconfig out of distutils by Tarek Ziadé · 16 years ago
- f8a9402 This should fix the failure introduced in r77680. The error message is now different and it caused the test to fail. The failing test is not present in 2.5 so it is failing only on 2.6 and newer versions. by Ezio Melotti · 16 years ago