- 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
- a3112d1 Use // for floor division. by Mark Dickinson · 16 years ago
- 5a63348 Add two more test_strtod test values. by Mark Dickinson · 16 years ago
- 294d6ac Additional testcases for strtod. by Mark Dickinson · 16 years ago
- 4141d65 Various dtoa.c cleanups. 1. Despagghetify _Py_dg_strtod parsing code by Mark Dickinson · 16 years ago
- 8926108 Revert debugprint code in r77607. by Gregory P. Smith · 16 years ago
- 8f6f426 Add a pydebug mode only debug print to help debug the errors in by Gregory P. Smith · 16 years ago
- 9179dab data descriptors do not override the class dictionary if __get__ is not defined by Benjamin Peterson · 16 years ago
- e80a6a4 Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) by Antoine Pitrou · 16 years ago
- ab6ee7a Increase number of strtod tests slightly, to make it more likely that a memory leak is detected. by Mark Dickinson · 16 years ago
- d87f22c Add better error reporting for MemoryErrors caused by str->float conversions. by Mark Dickinson · 16 years ago
- 811ff82 Issue #7632: Fix one more case of incorrect rounding for str -> float by Mark Dickinson · 16 years ago
- db983a7 Followup to #7703: a2b_hqx() didn't follow the new buffer API (neither in trunk by Antoine Pitrou · 16 years ago
- 476279f Issue #7632: Fix a serious wrong output bug for string -> float conversion. by Mark Dickinson · 16 years ago
- 667dc19 try to fix for windows by Benjamin Peterson · 16 years ago
- c391ad0 Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a by Antoine Pitrou · 16 years ago
- efdddd3 Issue #3299: Fix possible crash in the _sre module when given bad by Antoine Pitrou · 16 years ago
- fd3a60d Issue #7703: Add support for the new buffer API to functions of the by Antoine Pitrou · 16 years ago
- 647ed91 Issue #7632: add tests for bugs fixed so far. by Mark Dickinson · 16 years ago
- 7a1b435 use more robust quoting by Benjamin Peterson · 16 years ago
- 5f76d13 Issue #7625: Add more tests that bytearray methods return new objects, by Antoine Pitrou · 16 years ago
- 5a9112c Issue #2846: Add support for gzip.GzipFile reading zero-padded files. by Antoine Pitrou · 16 years ago
- 5ff4f27 Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results. by Mark Dickinson · 16 years ago
- 8efef5c Issue #7632: Fix a problem with _Py_dg_strtod that could lead to by Mark Dickinson · 16 years ago
- efa45f3 Issue #7654: enable additional bytes/bytearray tests. Patch by Florent Xicluna. by Antoine Pitrou · 16 years ago
- b5689de #5827: make sure that normpath preserves unicode by Ezio Melotti · 16 years ago
- 58a96ef Fixed repr of dictionary views. by Alexandre Vassalotti · 16 years ago
- 69eb516 Issue #1967: Backport dictionary views. by Alexandre Vassalotti · 16 years ago
- b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 16 years ago
- e822ab0 fix test_popen when the path to python has spaces #7671 by Benjamin Peterson · 16 years ago
- 2e3da14 Fixed issue7648 - test_urllib2 fails on Windows if not run from C: by Senthil Kumaran · 16 years ago
- 9d87323 Update root certificate to CAcert. by Martin v. Löwis · 16 years ago
- 6fdd3dc DeprecationWarning is now silent by default. by Brett Cannon · 16 years ago
- ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 16 years ago
- e365613 Issue #7532: Add additional slicing test cases for new- and old-style by Mark Dickinson · 16 years ago
- 5b77d6d Remove obsolete warning filters in regrtest.py (from issue #7092 -- patch by by Antoine Pitrou · 16 years ago
- 7a2ee0b Fix for Issue7026. For the Error - RuntimeError: dictionary changed size during iteration by Senthil Kumaran · 16 years ago
- 8015725 Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles by Antoine Pitrou · 16 years ago
- ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
- 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
- 3194d14 Backport some float repr tests that were missed in issue 7117. by Mark Dickinson · 16 years ago
- 0d423b8 Issue #7455: Fix possible crash in cPickle on invalid input. Patch by by Antoine Pitrou · 16 years ago
- 8904053 #5991: let completion for the "help" command include help topics. by Georg Brandl · 16 years ago
- 5089a38 Small fixes to test_cmd: fix signature of do_shell, remove duplicate import, add option to run the custom Cmd class. by Georg Brandl · 16 years ago
- 2b6e4bc add a test about hashing array.array by Benjamin Peterson · 16 years ago
- af45b11 Kill a couple of "<>" by Antoine Pitrou · 16 years ago
- ecdae19 do correct lookup of the __complex__ method by Benjamin Peterson · 16 years ago
- 673ddf9 Issue #7471: Improve the performance of GzipFile's buffering mechanism, by Antoine Pitrou · 16 years ago