summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* A faulty load_tests in a test module no longer halts test discovery. A placeh...Michael Foord2010-03-211-0/+15
* Cleanup test_tarfile, and use check_warnings.Florent Xicluna2010-03-201-9/+12
* Cleanup test_struct using check_warnings.Florent Xicluna2010-03-201-68/+50
* Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual...Michael Foord2010-03-202-29/+60
* #8178 Cleanup the threads after test_thread.TestForkInThread.Florent Xicluna2010-03-201-6/+7
* Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* a...Florent Xicluna2010-03-1910-91/+89
* - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument.Matthias Klose2010-03-191-0/+3
* keep DeprecationWarning from failing testBenjamin Peterson2010-03-191-1/+1
* Add support for weak references to code objects. This will be used by an opti...Collin Winter2010-03-182-3/+30
* Issue #8024: Update the Unicode database to 5.2Florent Xicluna2010-03-181-2/+2
* #8155: Preserve backward compatibility for test_support.check_warnings(). Ad...Florent Xicluna2010-03-182-15/+34
* Fix for Issue8135 - urllib.unquote to support mixed percent escapesSenthil Kumaran2010-03-181-0/+26
* Make test_pwd more stable in the face of unusual LDAP/NIS/Kerberos deployment...Collin Winter2010-03-181-5/+8
* Issue #8104: socket.recv_into() and socket.recvfrom_into() now supportAntoine Pitrou2010-03-171-4/+40
* Fix a race condition in test_asynchat uncovered by the Unladen Swallow JIT.Collin Winter2010-03-171-0/+13
* prevent lambda functions from having docstrings #8164Benjamin Peterson2010-03-171-0/+4
* Fix and check cgi module deprecation warnings. Revert an unwanted rename in ...Florent Xicluna2010-03-172-6/+7
* Cleanup some test cases using check_warnings and check_py3k_warnings.Florent Xicluna2010-03-176-79/+53
* Cleanup in test_import and test_coding.Florent Xicluna2010-03-172-80/+57
* Use "x in y" instead of y.find(x) != -1.Ezio Melotti2010-03-174-4/+4
* #7092: silence some more py3k warnings.Ezio Melotti2010-03-178-55/+83
* Delete unused import.Collin Winter2010-03-171-1/+0
* Style cleanup in test_import.Collin Winter2010-03-171-70/+73
* Fix a trivial class of (hypothetical, future) false-positive refleaks, discov...Collin Winter2010-03-171-2/+3
* Issue #7783 and #7787: open_urlresource invalidates the outdated files from t...Florent Xicluna2010-03-152-13/+31
* - Issue #8140: extend compileall to compile single files. Add -i option.Matthias Klose2010-03-151-0/+19
* Do not hardcode Expat version. It's possible to build Python with --with-sys...Florent Xicluna2010-03-141-2/+2
* Minor documentation updates for xml.etree.Florent Xicluna2010-03-141-2/+2
* Do not chdir when running test_xml_etree, and enhance the findfile helper.Florent Xicluna2010-03-134-27/+12
* Move the xml test data to their own directory.Florent Xicluna2010-03-138-28/+41
* Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set.Victor Stinner2010-03-131-1/+1
* remove shebang line from non-executable testBenjamin Peterson2010-03-111-2/+0
* normalize shebang lines to #!/usr/bin/env pythonBenjamin Peterson2010-03-112-2/+2
* Fix repr of tree Element on windows.Florent Xicluna2010-03-111-3/+4
* Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cEleme...Florent Xicluna2010-03-114-255/+1552
* Another fix to test_executable() of test_sys: set the current working to avoidVictor Stinner2010-03-111-1/+4
* Fix test_executable introduce in previous commit (r78835): Windows is able toVictor Stinner2010-03-111-2/+2
* Issue #7774: Set sys.executable to an empty string if argv[0] has beenVictor Stinner2010-03-111-0/+11
* Revert r78830: realpath() should really be applied to sys.executable.Florent Xicluna2010-03-111-1/+1
* It is not optimal to test sys.stderr on a debug build.Florent Xicluna2010-03-111-2/+1
* Fix the test_subprocess failure when sys.executable is meaningless: '' or a d...Florent Xicluna2010-03-111-1/+1
* Issue #7880: Fix sysconfig when the python executable is a symbolic link.Florent Xicluna2010-03-101-1/+19
* #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag.Florent Xicluna2010-03-092-18/+33
* #7624: Fix isinstance(foo(), collections.Callable) for old-style classes.Florent Xicluna2010-03-081-2/+30
* Move some tests from test_macpath to test_genericpath.CommonTestFlorent Xicluna2010-03-082-10/+12
* Replace the stderr logging with assertNotEqual(returncode, 0).Florent Xicluna2010-03-081-4/+2
* Addition of setUpClass and setUpModule shared fixtures to unittest.Michael Foord2010-03-071-1/+395
* Fix for potentials errors in constructing unittest failure messages. Plus ski...Michael Foord2010-03-071-0/+47
* Refresh the documentation for the test.test_support module.Florent Xicluna2010-03-071-5/+5
* #2777: Try hard to make Win7 buildbot happy...Florent Xicluna2010-03-071-2/+3