- 31e928e Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time. by Vinay Sajip · 15 years ago
- c7790ed Fix the NEWS about my last commit: an unicode subclass can now override the by Victor Stinner · 15 years ago
- 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 15 years ago
- 0ce1672 expected failure should not trigger failfast behavior in unittest. by Michael Foord · 15 years ago
- 4989969 Removing Python 2.3 compatibility code from unittest. by Michael Foord · 15 years ago
- db003cb Fix failing test committed by accident. by Michael Foord · 15 years ago
- 1b9e953 -f/--failfast command line option for unittest. Issue 8074. Documentation still needed. Plus minor change to test_unittest to allow it to be run with python -m test.unittest by Michael Foord · 15 years ago
- b1aa30f Issue 7815. __unittest in module globals trims frames from reported stacktraces in unittest. by Michael Foord · 15 years ago
- bb9d726 take into account keyword arguments when passing too many args by Benjamin Peterson · 15 years ago
- 9654589 improve error message from passing inadequate number of keyword arguments #6474 by Benjamin Peterson · 15 years ago
- 54bc22e don't write duplicate tests by Benjamin Peterson · 15 years ago
- 52b32b6 fix import by Benjamin Peterson · 15 years ago
- 77a8849 #8180: Fix test_pep277 on OS X and add more tests for special Unicode normalization cases. by Florent Xicluna · 15 years ago
- e39b2ec rewrite a bit by Benjamin Peterson · 15 years ago
- b88fbf4 Use assertRaises and add a specific warning filter. by Florent Xicluna · 15 years ago
- 3f5d146 No more deprecation warnings for distutils.sysconfig, following r78666. by Florent Xicluna · 15 years ago
- af61719 Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" statements. by Florent Xicluna · 15 years ago
- 8f43cec Fix py3k warnings in test_decimal, using unittest.assertItemsEqual. by Florent Xicluna · 15 years ago
- 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
- 73dbe04 A faulty load_tests in a test module no longer halts test discovery. A placeholder test, that reports the failure, is created instead. by Michael Foord · 15 years ago
- fc5f6a7 Cleanup test_tarfile, and use check_warnings. by Florent Xicluna · 15 years ago
- db4a321 Cleanup test_struct using check_warnings. by Florent Xicluna · 15 years ago
- 98e7b76 Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual and changing behaviour by Michael Foord · 15 years ago
- 2e6d262 #8178 Cleanup the threads after test_thread.TestForkInThread. by Florent Xicluna · 15 years ago
- bc27c6a Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* and setUp/tearDown. by Florent Xicluna · 15 years ago
- e9fbf2b - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument. by Matthias Klose · 15 years ago
- f4fd0bf keep DeprecationWarning from failing test by Benjamin Peterson · 15 years ago
- 001a395 Add support for weak references to code objects. This will be used by an optimization in the incoming Python 3 JIT. by Collin Winter · 15 years ago
- 2e0a53f Issue #8024: Update the Unicode database to 5.2 by Florent Xicluna · 15 years ago
- 7358854 #8155: Preserve backward compatibility for test_support.check_warnings(). Add regression tests. by Florent Xicluna · 15 years ago
- f3e9b2a Fix for Issue8135 - urllib.unquote to support mixed percent escapes by Senthil Kumaran · 15 years ago
- 43fe03a Make test_pwd more stable in the face of unusual LDAP/NIS/Kerberos deployments (the old test was flaky on Google buildslaves). by Collin Winter · 15 years ago
- d7b731d Issue #8104: socket.recv_into() and socket.recvfrom_into() now support by Antoine Pitrou · 15 years ago
- 2227251 Fix a race condition in test_asynchat uncovered by the Unladen Swallow JIT. by Collin Winter · 15 years ago
- 0dee9c1 prevent lambda functions from having docstrings #8164 by Benjamin Peterson · 15 years ago
- 78c1871 Fix and check cgi module deprecation warnings. Revert an unwanted rename in test_import. by Florent Xicluna · 15 years ago
- 945a8ba Cleanup some test cases using check_warnings and check_py3k_warnings. by Florent Xicluna · 15 years ago
- 2b73c21 Cleanup in test_import and test_coding. by Florent Xicluna · 15 years ago
- 187f93d Use "x in y" instead of y.find(x) != -1. by Ezio Melotti · 15 years ago
- d80b4bf #7092: silence some more py3k warnings. by Ezio Melotti · 15 years ago
- 8b3f1ce Delete unused import. by Collin Winter · 15 years ago
- 89b4f13 Style cleanup in test_import. by Collin Winter · 15 years ago
- ac1d931 Fix a trivial class of (hypothetical, future) false-positive refleaks, discovered by an optimization in Unladen Swallow's past (which will become CPython's future). by Collin Winter · 15 years ago
- 3cc8f21 Issue #7783 and #7787: open_urlresource invalidates the outdated files from the local cache. by Florent Xicluna · 15 years ago
- b13d04c - Issue #8140: extend compileall to compile single files. Add -i option. by Matthias Klose · 15 years ago
- ece29b2 Do not hardcode Expat version. It's possible to build Python with --with-system-expat option. by Florent Xicluna · 15 years ago
- 88db6f4 Minor documentation updates for xml.etree. by Florent Xicluna · 15 years ago
- 1b51c3d Do not chdir when running test_xml_etree, and enhance the findfile helper. by Florent Xicluna · 15 years ago
- 13ba1a1 Move the xml test data to their own directory. by Florent Xicluna · 15 years ago
- 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 15 years ago
- 654ea37 remove shebang line from non-executable test by Benjamin Peterson · 15 years ago
- 9cf41d0 normalize shebang lines to #!/usr/bin/env python by Benjamin Peterson · 15 years ago
- e2e81e8 Fix repr of tree Element on windows. by Florent Xicluna · 15 years ago
- 3e8c189 Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cElementTree module is updated too. by Florent Xicluna · 15 years ago
- 4478662 Another fix to test_executable() of test_sys: set the current working to avoid by Victor Stinner · 15 years ago
- 6ecd85f Fix test_executable introduce in previous commit (r78835): Windows is able to by Victor Stinner · 15 years ago
- 4a7e0c85 Issue #7774: Set sys.executable to an empty string if argv[0] has been by Victor Stinner · 15 years ago
- 6376370 Revert r78830: realpath() should really be applied to sys.executable. by Florent Xicluna · 15 years ago
- 6602ec6 It is not optimal to test sys.stderr on a debug build. by Florent Xicluna · 15 years ago
- e58d91c Fix the test_subprocess failure when sys.executable is meaningless: '' or a directory. by Florent Xicluna · 15 years ago
- 8567761 Issue #7880: Fix sysconfig when the python executable is a symbolic link. by Florent Xicluna · 15 years ago
- 4d42f2b #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag. by Florent Xicluna · 15 years ago
- 47627d5 #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. by Florent Xicluna · 15 years ago
- 6f682be Move some tests from test_macpath to test_genericpath.CommonTest by Florent Xicluna · 15 years ago
- faf1753 Replace the stderr logging with assertNotEqual(returncode, 0). by Florent Xicluna · 15 years ago
- 5ffa325 Addition of setUpClass and setUpModule shared fixtures to unittest. by Michael Foord · 15 years ago
- 53e8eea Fix for potentials errors in constructing unittest failure messages. Plus skipped test methods no longer run setUp and tearDown (Issue 8059) by Michael Foord · 15 years ago
- fc8a1ed Refresh the documentation for the test.test_support module. by Florent Xicluna · 15 years ago
- 400efc2 #2777: Try hard to make Win7 buildbot happy... by Florent Xicluna · 15 years ago
- 154b7ad Issue #1530559: When packing a non-integer with any integer conversion by Mark Dickinson · 15 years ago
- c083864 Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platforms. by Florent Xicluna · 15 years ago
- c02bbe3 #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms. by Florent Xicluna · 15 years ago
- 6de9e93 Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are by Florent Xicluna · 15 years ago
- 1f3b4e1 Fix some py3k warnings in the standard library. by Florent Xicluna · 15 years ago
- 4e62949 Reverting the change made in r78431. by Senthil Kumaran · 15 years ago
- 6b31fd0 eliminate py3k warnings in argparse by Benjamin Peterson · 15 years ago
- 632df99 Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a4 release. by Florent Xicluna · 15 years ago
- 985478d Minor tweaking of previous r78734, and add a NEWS entry. by Florent Xicluna · 15 years ago
- dc1531c Create test_genericpath.CommonTest and reuse it to test other path modules. by Florent Xicluna · 15 years ago
- 5852641 Do not print the header lines when running a single test. by Florent Xicluna · 15 years ago
- d45a278 Added schema version test in dictConfig. by Vinay Sajip · 15 years ago
- 12d750d Backport "test.regrtest -R 2:3" syntax from py3k branch, and other minor adjustments. by Florent Xicluna · 15 years ago
- aa90db9 #2777: Apply same recipe on win32, i.e. do not inherit file handles. by Florent Xicluna · 15 years ago
- b7c2002 Print platform information to stdout, to help troubleshooting platform-specific failures. by Florent Xicluna · 15 years ago
- 0932dc5 Keep the test files in the ./build/ subdirectory, if Python is not installed. by Florent Xicluna · 15 years ago
- 467298c Call setreuid and setregid in a subprocess to avoid altering the test runner's by Gregory P. Smith · 15 years ago
- af9a06a #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redirect fds. by Florent Xicluna · 15 years ago
- cecef39 #2777: Handle fds more carefully to try to fix some x86-Linux failures (namely, neal bot and twisted bot). by Florent Xicluna · 15 years ago
- 1c0c78c Fix incorrect stacklevel for DeprecationWarnings originating from the struct module. by Mark Dickinson · 15 years ago
- b3be23a remove the svn:executable property from files that don't have shebang lines by Benjamin Peterson · 15 years ago
- 7272acf These line should not be there. by Florent Xicluna · 15 years ago
- d693563 Let's use assertIsNone / assertIsNotNone. It's hype. by Florent Xicluna · 15 years ago
- 80e0e2d Workaround #3137: Retry SIGINT if it is not received the first time. by Florent Xicluna · 15 years ago
- ab5e17f #2777: Enable test_send_signal, test_kill and test_terminate on all platforms. by Florent Xicluna · 15 years ago
- bab22a7 Cleanup. by Florent Xicluna · 15 years ago
- 19c9b60 Try to fix buildbot breakage from r78384. by Dirkjan Ochtman · 15 years ago
- 3bc5cb7 #7805: wait until all workers are started before collecting their PIDs by Florent Xicluna · 15 years ago
- a36e245 Fix transient refleak in test_popen2. by Florent Xicluna · 15 years ago
- 7c924ec Issue #1054943: Fix unicodedata.normalize('NFC', text) for the Public Review by Victor Stinner · 15 years ago
- 6458104 Issue #7232: Add support for the context manager protocol to the TarFile class. by Lars Gustäbel · 15 years ago