- 513d9ae Issue #7512: shutil.copystat() could raise an OSError when the filesystem by Antoine Pitrou · 15 years ago
- 0805e6e #7668: Fix test_httpservers failure when sys.executable contains non-ASCII bytes. by Florent Xicluna · 15 years ago
- eba2aca Preserve backward compatibility of the ctypes module. by Florent Xicluna · 15 years ago
- 9e7a4c9 Issue #7703: ctypes supports both buffer() and memoryview(). The former is deprecated. by Florent Xicluna · 15 years ago
- c9d1a78 Issue #7860: platform.uname now reports the correct 'machine' type by R. David Murray · 15 years ago
- 804899b logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter. by Vinay Sajip · 15 years ago
- 73c22e9 Missing testsuite files by Jesus Cea · 15 years ago
- f08a017 Get rid of buffer() in test_ctypes: backport the 3.x tests. by Florent Xicluna · 15 years ago
- 52093b8 Fix an occasional test_ftplib failure, following r79226. by Antoine Pitrou · 15 years ago
- 6557aac pybsddb 4.8.4 integration. Please, comment in issue #8156 by Jesus Cea · 15 years ago
- 31e928e Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time. by Vinay Sajip · 15 years ago
- c7790ed Fix the NEWS about my last commit: an unicode subclass can now override the by Victor Stinner · 15 years ago
- 3017a7b Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs. by Vinay Sajip · 15 years ago
- 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 15 years ago
- eef159b Correct usage message displayed for python -m unittest -h by Michael Foord · 15 years ago
- 0ce1672 expected failure should not trigger failfast behavior in unittest. by Michael Foord · 15 years ago
- 4989969 Removing Python 2.3 compatibility code from unittest. by Michael Foord · 15 years ago
- db003cb Fix failing test committed by accident. by Michael Foord · 15 years ago
- 1b9e953 -f/--failfast command line option for unittest. Issue 8074. Documentation still needed. Plus minor change to test_unittest to allow it to be run with python -m test.unittest by Michael Foord · 15 years ago
- b1aa30f Issue 7815. __unittest in module globals trims frames from reported stacktraces in unittest. by Michael Foord · 15 years ago
- bb9d726 take into account keyword arguments when passing too many args by Benjamin Peterson · 15 years ago
- 9654589 improve error message from passing inadequate number of keyword arguments #6474 by Benjamin Peterson · 15 years ago
- 54bc22e don't write duplicate tests by Benjamin Peterson · 15 years ago
- 52b32b6 fix import by Benjamin Peterson · 15 years ago
- 88e7eba co_varnames is certainly a tuple, so let's not waste time finding out by Benjamin Peterson · 15 years ago
- d51b259 remove pointless condition by Benjamin Peterson · 15 years ago
- 448da71 Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets. by Antoine Pitrou · 15 years ago
- 56472c2 flatten condition by Benjamin Peterson · 15 years ago
- f83b308 Issue #1628484: The Makefile doesn't ignore the CFLAGS environment by Antoine Pitrou · 15 years ago
- 4d0130e Fix plural. by Georg Brandl · 15 years ago
- 46c2db5 Add items by Andrew M. Kuchling · 15 years ago
- 77a8849 #8180: Fix test_pep277 on OS X and add more tests for special Unicode normalization cases. by Florent Xicluna · 15 years ago
- e39b2ec rewrite a bit by Benjamin Peterson · 15 years ago
- cf82fa6 Issue #8179: Fix macpath.realpath() on a non-existing path. by Florent Xicluna · 15 years ago
- b88fbf4 Use assertRaises and add a specific warning filter. by Florent Xicluna · 15 years ago
- aa89f8d Remove leftover word. by Georg Brandl · 15 years ago
- 3f5d146 No more deprecation warnings for distutils.sysconfig, following r78666. by Florent Xicluna · 15 years ago
- af61719 Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" statements. by Florent Xicluna · 15 years ago
- 8f43cec Fix py3k warnings in test_decimal, using unittest.assertItemsEqual. by Florent Xicluna · 15 years ago
- 4a0f8b8 Silence more py3k warnings in unittest.case. by Florent Xicluna · 15 years ago
- 236da4b Include structmember.h correctly. by Georg Brandl · 15 years ago
- ce00cf2 Update text for newest US DST regulation. The sample file already has the calculation right. by Georg Brandl · 15 years ago
- f23f0a2 Update os.kill() emulation example for Windows to use ctypes. by Georg Brandl · 15 years ago
- a39f2af Mention inefficiency of lists as queues, add link to collections.deque discussion. by Georg Brandl · 15 years ago
- 0b56ce0 Clarify that for shell=True, the shell PID will be the child PID. by Georg Brandl · 15 years ago
- 0fcd882 Introduce copy by slicing, used in later chapters. by Georg Brandl · 15 years ago
- d1068be Document that GzipFile supports iteration. by Georg Brandl · 15 years ago
- 3814ddf Add a paragraph about set displays. by Georg Brandl · 15 years ago
- dad0203 Remove the "built-in objects" file. It only contained two paragraphs of which only one contained useful information, which belongs in the ref manual however. by Georg Brandl · 15 years ago
- 118c557 Fix some issues found by Jacques Ducasse on the docs list. by Georg Brandl · 15 years ago
- 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
- 8cb253f Change order of arguments in a unittest function. by Michael Foord · 15 years ago
- 73dbe04 A faulty load_tests in a test module no longer halts test discovery. A placeholder test, that reports the failure, is created instead. by Michael Foord · 15 years ago
- 134fb10 Fix overzealous .hgignore file by Antoine Pitrou · 15 years ago
- fc5f6a7 Cleanup test_tarfile, and use check_warnings. by Florent Xicluna · 15 years ago
- db4a321 Cleanup test_struct using check_warnings. by Florent Xicluna · 15 years ago
- 2405547 wrap by Benjamin Peterson · 15 years ago
- d47667c document exitfunc fixer by Benjamin Peterson · 15 years ago
- 98e7b76 Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual and changing behaviour by Michael Foord · 15 years ago
- 2e6d262 #8178 Cleanup the threads after test_thread.TestForkInThread. by Florent Xicluna · 15 years ago
- b2efeff Fixing the file call in the rfc822.Message replacement example. by Sean Reifscheider · 15 years ago
- 95ce1fc Adding an example of reproducing the rfc822.Message() parsing. by Sean Reifscheider · 15 years ago
- cc1d06b set svn:eol-style to native on C files by Benjamin Peterson · 15 years ago
- a317e77 Initialized merge tracking via "svnmerge" with revisions "1-79104" from by Thomas Heller · 15 years ago
- 67e37f2 update libffi to commit 59a259f4d348f593b45f452309f4d020a28051c4 from the by Matthias Klose · 15 years ago
- bc27c6a Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* and setUp/tearDown. by Florent Xicluna · 15 years ago
- 4854c96 Generate libffi's Makefiles again to be able to run the libffi testsuite by Matthias Klose · 15 years ago
- e9fbf2b - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument. by Matthias Klose · 15 years ago
- f4fd0bf keep DeprecationWarning from failing test by Benjamin Peterson · 15 years ago
- a70f349 Make python-config support multiple option flags on the same command line, rather than requiring one invocation per flag. by Collin Winter · 15 years ago
- 00dd3f5 Add a separate python-config make target, useful for testing changes to Misc/python-config.in. by Collin Winter · 15 years ago
- 52d4aea make compiler's py3k warning a full deprecation warning #6837 by Benjamin Peterson · 15 years ago
- d8fdd7e reignore bad_coding by Benjamin Peterson · 15 years ago
- e30b3fa these lines can now be dispensed with by Benjamin Peterson · 15 years ago
- 001a395 Add support for weak references to code objects. This will be used by an optimization in the incoming Python 3 JIT. by Collin Winter · 15 years ago
- 2e0a53f Issue #8024: Update the Unicode database to 5.2 by Florent Xicluna · 15 years ago
- decd14b install tkinter and ttk tests by Benjamin Peterson · 15 years ago
- a2797bd remove installation of deleted test/output dir by Benjamin Peterson · 15 years ago
- 716869c don't try to compile anything in lib2to3/tests/data #8169 by Benjamin Peterson · 15 years ago
- 7358854 #8155: Preserve backward compatibility for test_support.check_warnings(). Add regression tests. by Florent Xicluna · 15 years ago
- f3e9b2a Fix for Issue8135 - urllib.unquote to support mixed percent escapes by Senthil Kumaran · 15 years ago
- 43fe03a Make test_pwd more stable in the face of unusual LDAP/NIS/Kerberos deployments (the old test was flaky on Google buildslaves). by Collin Winter · 15 years ago
- d7b731d Issue #8104: socket.recv_into() and socket.recvfrom_into() now support by Antoine Pitrou · 15 years ago
- 2227251 Fix a race condition in test_asynchat uncovered by the Unladen Swallow JIT. by Collin Winter · 15 years ago
- 0dee9c1 prevent lambda functions from having docstrings #8164 by Benjamin Peterson · 15 years ago
- 78c1871 Fix and check cgi module deprecation warnings. Revert an unwanted rename in test_import. by Florent Xicluna · 15 years ago
- 945a8ba Cleanup some test cases using check_warnings and check_py3k_warnings. by Florent Xicluna · 15 years ago
- 2b73c21 Cleanup in test_import and test_coding. by Florent Xicluna · 15 years ago
- 7864312 Avoid hardcoding refcounts in tests. by Collin Winter · 15 years ago
- 2060e42 Issue #8162: logging: Clarified docstring and documentation for disable function. by Vinay Sajip · 15 years ago
- 187f93d Use "x in y" instead of y.find(x) != -1. by Ezio Melotti · 15 years ago
- d80b4bf #7092: silence some more py3k warnings. by Ezio Melotti · 15 years ago
- 8b3f1ce Delete unused import. by Collin Winter · 15 years ago
- 89b4f13 Style cleanup in test_import. by Collin Winter · 15 years ago
- ac1d931 Fix a trivial class of (hypothetical, future) false-positive refleaks, discovered by an optimization in Unladen Swallow's past (which will become CPython's future). by Collin Winter · 15 years ago
- 3436064 Integrate merge.py into msi.py. by Martin v. Löwis · 15 years ago
- 8b41168 - Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox by Matthias Klose · 15 years ago
- 3cc8f21 Issue #7783 and #7787: open_urlresource invalidates the outdated files from the local cache. by Florent Xicluna · 15 years ago
- fae23dc - Fix typo in Lib/compileall.py(__all__). by Matthias Klose · 15 years ago
- b13d04c - Issue #8140: extend compileall to compile single files. Add -i option. by Matthias Klose · 15 years ago