summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* The SIGINT signal may happen earlier, during site.py initialization.Florent Xicluna2010-03-231-4/+1
|
* The standard error should be empty when the signal is killed, except on SIGINT.Florent Xicluna2010-03-231-2/+8
|
* Silence test_subprocess.Florent Xicluna2010-03-231-24/+12
|
* Skip test_format_deprecation if _ctypes is not available. Add a filter to ↵Florent Xicluna2010-03-231-6/+11
| | | | the warning check.
* #7668: Fix test_httpservers failure when sys.executable contains non-ASCII ↵Florent Xicluna2010-03-221-2/+12
| | | | bytes.
* Issue #7860: platform.uname now reports the correct 'machine' typeR. David Murray2010-03-221-0/+21
| | | | | when Python is running in WOW64 mode on 64 bit Windows. Patch by Brian Curtin.
* logging: Added getChild utility method to Logger and added isEnabledFor ↵Vinay Sajip2010-03-221-1/+19
| | | | method to LoggerAdapter.
* Get rid of buffer() in test_ctypes: backport the 3.x tests.Florent Xicluna2010-03-221-7/+5
|
* Fix an occasional test_ftplib failure, following r79226.Antoine Pitrou2010-03-221-1/+6
|
* Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger ↵Vinay Sajip2010-03-221-0/+6
| | | | names exist at the same time.
* Fix the NEWS about my last commit: an unicode subclass can now override theVictor Stinner2010-03-221-2/+0
| | | | | | __unicode__ method (and not the __str__ method). Simplify also the testcase.
* Issue #1583863: An unicode subclass can now override the __str__ methodVictor Stinner2010-03-221-0/+11
|
* expected failure should not trigger failfast behavior in unittest.Michael Foord2010-03-221-6/+0
|
* Removing Python 2.3 compatibility code from unittest.Michael Foord2010-03-221-1/+3
|
* Fix failing test committed by accident.Michael Foord2010-03-221-1/+1
|
* -f/--failfast command line option for unittest. Issue 8074. Documentation ↵Michael Foord2010-03-221-20/+54
| | | | still needed. Plus minor change to test_unittest to allow it to be run with python -m test.unittest
* Issue 7815. __unittest in module globals trims frames from reported ↵Michael Foord2010-03-221-0/+10
| | | | stacktraces in unittest.
* take into account keyword arguments when passing too many argsBenjamin Peterson2010-03-211-0/+9
|
* improve error message from passing inadequate number of keyword arguments #6474Benjamin Peterson2010-03-211-0/+9
| | | | Note this removes the "non-keyword" or "keyword" phrases from these messages.
* don't write duplicate testsBenjamin Peterson2010-03-211-2/+0
|
* fix importBenjamin Peterson2010-03-211-2/+3
|
* #8180: Fix test_pep277 on OS X and add more tests for special Unicode ↵Florent Xicluna2010-03-211-30/+105
| | | | normalization cases.
* rewrite a bitBenjamin Peterson2010-03-211-4/+6
|
* Use assertRaises and add a specific warning filter.Florent Xicluna2010-03-211-9/+4
|
* No more deprecation warnings for distutils.sysconfig, following r78666.Florent Xicluna2010-03-211-8/+3
| | | | But when the "dl" module is available, it gives a py3k deprecation warning.
* Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" ↵Florent Xicluna2010-03-212-3/+35
| | | | statements.
* Fix py3k warnings in test_decimal, using unittest.assertItemsEqual.Florent Xicluna2010-03-211-17/+15
|
* #7092 - Silence more py3k deprecation warnings, using ↵Florent Xicluna2010-03-2138-184/+290
| | | | test_support.check_py3k_warnings() helper.
* A faulty load_tests in a test module no longer halts test discovery. A ↵Michael Foord2010-03-211-0/+15
| | | | placeholder test, that reports the failure, is created instead.
* 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 ↵Michael Foord2010-03-202-29/+60
| | | | assertItemsEqual and changing behaviour
* #8178 Cleanup the threads after test_thread.TestForkInThread.Florent Xicluna2010-03-201-6/+7
|
* Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* ↵Florent Xicluna2010-03-1910-91/+89
| | | | and setUp/tearDown.
* - 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 ↵Collin Winter2010-03-182-3/+30
| | | | | | optimization in the incoming Python 3 JIT. Patch by Reid Kleckner!
* 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
|