| Commit message (Expand) | Author | Age | Files | Lines |
* | Use assertRaises and add a specific warning filter. | Florent Xicluna | 2010-03-21 | 1 | -9/+4 |
|
|
* | No more deprecation warnings for distutils.sysconfig, following r78666. | Florent Xicluna | 2010-03-21 | 2 | -8/+6 |
|
|
* | Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" state... | Florent Xicluna | 2010-03-21 | 2 | -3/+35 |
|
|
* | Fix py3k warnings in test_decimal, using unittest.assertItemsEqual. | Florent Xicluna | 2010-03-21 | 1 | -17/+15 |
|
|
* | Silence more py3k warnings in unittest.case. | Florent Xicluna | 2010-03-21 | 1 | -2/+2 |
|
|
* | #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k... | Florent Xicluna | 2010-03-21 | 38 | -184/+290 |
|
|
* | Change order of arguments in a unittest function. | Michael Foord | 2010-03-21 | 1 | -4/+4 |
|
|
* | A faulty load_tests in a test module no longer halts test discovery. A placeh... | Michael Foord | 2010-03-21 | 2 | -7/+36 |
|
|
* | Cleanup test_tarfile, and use check_warnings. | Florent Xicluna | 2010-03-20 | 1 | -9/+12 |
|
|
* | Cleanup test_struct using check_warnings. | Florent Xicluna | 2010-03-20 | 1 | -68/+50 |
|
|
* | Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual... | Michael Foord | 2010-03-20 | 4 | -53/+127 |
|
|
* | #8178 Cleanup the threads after test_thread.TestForkInThread. | Florent Xicluna | 2010-03-20 | 1 | -6/+7 |
|
|
* | Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* a... | Florent Xicluna | 2010-03-19 | 10 | -91/+89 |
|
|
* | - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument. | Matthias Klose | 2010-03-19 | 1 | -0/+3 |
|
|
* | keep DeprecationWarning from failing test | Benjamin Peterson | 2010-03-19 | 1 | -1/+1 |
|
|
* | make compiler's py3k warning a full deprecation warning #6837 | Benjamin Peterson | 2010-03-18 | 1 | -3/+5 |
|
|
* | these lines can now be dispensed with | Benjamin Peterson | 2010-03-18 | 1 | -2/+0 |
|
|
* | Add support for weak references to code objects. This will be used by an opti... | Collin Winter | 2010-03-18 | 2 | -3/+30 |
|
|
* | Issue #8024: Update the Unicode database to 5.2 | Florent Xicluna | 2010-03-18 | 1 | -2/+2 |
|
|
* | #8155: Preserve backward compatibility for test_support.check_warnings(). Ad... | Florent Xicluna | 2010-03-18 | 2 | -15/+34 |
|
|
* | Fix for Issue8135 - urllib.unquote to support mixed percent escapes | Senthil Kumaran | 2010-03-18 | 3 | -4/+31 |
|
|
* | Make test_pwd more stable in the face of unusual LDAP/NIS/Kerberos deployment... | Collin Winter | 2010-03-18 | 1 | -5/+8 |
|
|
* | Issue #8104: socket.recv_into() and socket.recvfrom_into() now support | Antoine Pitrou | 2010-03-17 | 1 | -4/+40 |
|
|
* | Fix a race condition in test_asynchat uncovered by the Unladen Swallow JIT. | Collin Winter | 2010-03-17 | 1 | -0/+13 |
|
|
* | prevent lambda functions from having docstrings #8164 | Benjamin Peterson | 2010-03-17 | 1 | -0/+4 |
|
|
* | Fix and check cgi module deprecation warnings. Revert an unwanted rename in ... | Florent Xicluna | 2010-03-17 | 3 | -11/+12 |
|
|
* | Cleanup some test cases using check_warnings and check_py3k_warnings. | Florent Xicluna | 2010-03-17 | 6 | -79/+53 |
|
|
* | Cleanup in test_import and test_coding. | Florent Xicluna | 2010-03-17 | 2 | -80/+57 |
|
|
* | Avoid hardcoding refcounts in tests. | Collin Winter | 2010-03-17 | 1 | -4/+4 |
|
|
* | Issue #8162: logging: Clarified docstring and documentation for disable funct... | Vinay Sajip | 2010-03-17 | 1 | -1/+1 |
|
|
* | Use "x in y" instead of y.find(x) != -1. | Ezio Melotti | 2010-03-17 | 4 | -4/+4 |
|
|
* | #7092: silence some more py3k warnings. | Ezio Melotti | 2010-03-17 | 9 | -56/+84 |
|
|
* | Delete unused import. | Collin Winter | 2010-03-17 | 1 | -1/+0 |
|
|
* | Style cleanup in test_import. | Collin Winter | 2010-03-17 | 1 | -70/+73 |
|
|
* | Fix a trivial class of (hypothetical, future) false-positive refleaks, discov... | Collin Winter | 2010-03-17 | 1 | -2/+3 |
|
|
* | - Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox | Matthias Klose | 2010-03-16 | 1 | -3/+5 |
|
|
* | Issue #7783 and #7787: open_urlresource invalidates the outdated files from t... | Florent Xicluna | 2010-03-15 | 2 | -13/+31 |
|
|
* | - Fix typo in Lib/compileall.py(__all__). | Matthias Klose | 2010-03-15 | 1 | -1/+1 |
|
|
* | - Issue #8140: extend compileall to compile single files. Add -i option. | Matthias Klose | 2010-03-15 | 2 | -42/+114 |
|
|
* | - Issue #7356: ctypes.util: Make parsing of ldconfig output independent of | Matthias Klose | 2010-03-15 | 1 | -1/+1 |
|
|
* | - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x. | Matthias Klose | 2010-03-15 | 2 | -7/+8 |
|
|
* | clean up files correctly | Benjamin Peterson | 2010-03-15 | 1 | -15/+13 |
|
|
* | remove mac 9 code | Benjamin Peterson | 2010-03-15 | 1 | -10/+0 |
|
|
* | this little exception dance is pointless | Benjamin Peterson | 2010-03-15 | 1 | -2/+0 |
|
|
* | Do not hardcode Expat version. It's possible to build Python with --with-sys... | Florent Xicluna | 2010-03-14 | 1 | -2/+2 |
|
|
* | Minor documentation updates for xml.etree. | Florent Xicluna | 2010-03-14 | 1 | -2/+2 |
|
|
* | Do not chdir when running test_xml_etree, and enhance the findfile helper. | Florent Xicluna | 2010-03-13 | 4 | -27/+12 |
|
|
* | Move the xml test data to their own directory. | Florent Xicluna | 2010-03-13 | 8 | -28/+41 |
|
|
* | sqlite3: Fix a segfault on calling a connection with something else than a | Victor Stinner | 2010-03-13 | 1 | -7/+12 |
|
|
* | Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. | Victor Stinner | 2010-03-13 | 1 | -1/+1 |
|
|