summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #8024: Update the Unicode database to 5.2Florent Xicluna2010-03-181-2/+2
|
* #8155: Preserve backward compatibility for test_support.check_warnings(). ↵Florent Xicluna2010-03-182-15/+34
| | | | Add regression tests.
* 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 ↵Collin Winter2010-03-181-5/+8
| | | | deployments (the old test was flaky on Google buildslaves).
* Issue #8104: socket.recv_into() and socket.recvfrom_into() now supportAntoine Pitrou2010-03-171-4/+40
| | | | | writing into objects supporting the new buffer API, for example bytearrays or memoryviews.
* 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
| | | | test_import.
* 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, ↵Collin Winter2010-03-171-2/+3
| | | | discovered by an optimization in Unladen Swallow's past (which will become CPython's future).
* Issue #7783 and #7787: open_urlresource invalidates the outdated files from ↵Florent Xicluna2010-03-152-13/+31
| | | | | | the local cache. Use this feature to fix test_normalization.
* - 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 ↵Florent Xicluna2010-03-141-2/+2
| | | | --with-system-expat option.
* 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 ↵Florent Xicluna2010-03-114-255/+1552
| | | | cElementTree module is updated too.
* Another fix to test_executable() of test_sys: set the current working to avoidVictor Stinner2010-03-111-1/+4
| | | | the #7774 bug.
* Fix test_executable introduce in previous commit (r78835): Windows is able toVictor Stinner2010-03-111-2/+2
| | | | | retrieve the absolute Python path even if argv[0] has been set to a non existent program name.
* Issue #7774: Set sys.executable to an empty string if argv[0] has beenVictor Stinner2010-03-111-0/+11
| | | | | | | | set to an non existent program name and Python is unable to retrieve the real program name. Fix also sysconfig: if sys.executable is an empty string, use the current working directory.
* 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 ↵Florent Xicluna2010-03-111-1/+1
| | | | | | directory. It does not fix #7774.
* 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 ↵Michael Foord2010-03-071-0/+47
| | | | skipped test methods no longer run setUp and tearDown (Issue 8059)
* 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
|
* Issue #1530559: When packing a non-integer with any integer conversionMark Dickinson2010-03-071-22/+47
| | | | | | | | | code using struct.pack, attempt to convert to an integer first using the argument's __int__ method (if present). Also raise a DeprecationWarning for any such usage of __int__. This fixes a regression from 2.6, where some (but not all) integer conversion codes already used __int__.
* Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 ↵Florent Xicluna2010-03-071-39/+44
| | | | | | platforms. Do not hide the KeyboardInterrupt on POSIX platforms.
* #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms.Florent Xicluna2010-03-071-3/+0
|
* Issue #7849: Now the utility ``check_warnings`` verifies if the warnings areFlorent Xicluna2010-03-077-26/+98
| | | | effectively raised. A new utility ``check_py3k_warnings`` deals with py3k warnings.
* Fix some py3k warnings in the standard library.Florent Xicluna2010-03-072-11/+5
|
* Reverting the change made in r78431.Senthil Kumaran2010-03-071-1/+0
|
* eliminate py3k warnings in argparseBenjamin Peterson2010-03-071-0/+10
|
* Skip test_send_signal, test_kill, test_terminate on win32 platforms, for ↵Florent Xicluna2010-03-061-5/+11
| | | | 2.7a4 release.
* Minor tweaking of previous r78734, and add a NEWS entry.Florent Xicluna2010-03-064-52/+58
|