summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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-212-8/+6
* Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" state...Florent Xicluna2010-03-212-3/+35
* Fix py3k warnings in test_decimal, using unittest.assertItemsEqual.Florent Xicluna2010-03-211-17/+15
* Silence more py3k warnings in unittest.case.Florent Xicluna2010-03-211-2/+2
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-2138-184/+290
* Change order of arguments in a unittest function.Michael Foord2010-03-211-4/+4
* A faulty load_tests in a test module no longer halts test discovery. A placeh...Michael Foord2010-03-212-7/+36
* 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-204-53/+127
* #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
* make compiler's py3k warning a full deprecation warning #6837Benjamin Peterson2010-03-181-3/+5
* these lines can now be dispensed withBenjamin Peterson2010-03-181-2/+0
* 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-183-4/+31
* 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-173-11/+12
* 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
* Avoid hardcoding refcounts in tests.Collin Winter2010-03-171-4/+4
* Issue #8162: logging: Clarified docstring and documentation for disable funct...Vinay Sajip2010-03-171-1/+1
* 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-179-56/+84
* 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 #4961: Inconsistent/wrong result of askyesno function in tkMessageBoxMatthias Klose2010-03-161-3/+5
* Issue #7783 and #7787: open_urlresource invalidates the outdated files from t...Florent Xicluna2010-03-152-13/+31
* - Fix typo in Lib/compileall.py(__all__).Matthias Klose2010-03-151-1/+1
* - Issue #8140: extend compileall to compile single files. Add -i option.Matthias Klose2010-03-152-42/+114
* - Issue #7356: ctypes.util: Make parsing of ldconfig output independent ofMatthias Klose2010-03-151-1/+1
* - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x.Matthias Klose2010-03-152-7/+8
* clean up files correctlyBenjamin Peterson2010-03-151-15/+13
* remove mac 9 codeBenjamin Peterson2010-03-151-10/+0
* this little exception dance is pointlessBenjamin Peterson2010-03-151-2/+0
* 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
* sqlite3: Fix a segfault on calling a connection with something else than aVictor Stinner2010-03-131-7/+12
* Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set.Victor Stinner2010-03-131-1/+1