- 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
- dc36472 Remove py3k deprecation warnings from these Unicode tools. by Florent Xicluna · 15 years ago
- 358e7ff - Issue #7356: ctypes.util: Make parsing of ldconfig output independent of by Matthias Klose · 15 years ago
- 24e4e16 Issue #6716: Quote -x arguments of compileall in MSI installer. by Martin v. Löwis · 15 years ago
- 54cc539 - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x. by Matthias Klose · 15 years ago
- f568139 clean up files correctly by Benjamin Peterson · 15 years ago
- 5a4c0f5 remove mac 9 code by Benjamin Peterson · 15 years ago
- ca02f3a this little exception dance is pointless by Benjamin Peterson · 15 years ago
- d72ca85 Backport from the libffi trunk: by Matthias Klose · 15 years ago
- 817acef - Issue #8142: Update libffi to the 3.0.9 release. by Matthias Klose · 15 years ago
- ece29b2 Do not hardcode Expat version. It's possible to build Python with --with-system-expat option. by Florent Xicluna · 15 years ago
- 3b2abe9 fix quotes by Benjamin Peterson · 15 years ago
- 11d9323 fix freebsd linking #7705 by Benjamin Peterson · 15 years ago
- 8122bdd Add a link about the Public Review Issue #29 by Ezio Melotti · 15 years ago
- 65db587 #8137: add iso-8859-16 to the standard encodings table. by Georg Brandl · 15 years ago
- ba83f82 Format and rewrap 2.7 NEWS consistently. by Georg Brandl · 15 years ago
- 88db6f4 Minor documentation updates for xml.etree. by Florent Xicluna · 15 years ago
- 02b3f0a Issue #7993: Add a test of IO packet processing bandwidth to ccbench. by Antoine Pitrou · 15 years ago
- a231e45 Add the keyword argument "method=None" to the .write() method and the tostring/tostringlist functions. by Florent Xicluna · 15 years ago
- 583302c Update some parts of the xml.etree documentation. by Florent Xicluna · 15 years ago
- a0fd4cc Add 2.6 uuids. by Martin v. Löwis · 15 years ago
- f1ff88f Fix incorrect error checks in structmember.c (backport of r78920 from py3k). by Mark Dickinson · 15 years ago
- 45534ce Update for new download location. by Georg Brandl · 15 years ago
- e82110f Change/fix handling of docs download location: for daily builds, put them right next to the HTML. by Georg Brandl · 15 years ago
- 1b51c3d Do not chdir when running test_xml_etree, and enhance the findfile helper. by Florent Xicluna · 15 years ago
- 13ba1a1 Move the xml test data to their own directory. by Florent Xicluna · 15 years ago
- fce7b86 Bump externals versions for doc build. by Georg Brandl · 15 years ago
- 3446583 Add Makefile targets for automatic doc build. Add script that will be used for daily build. by Georg Brandl · 15 years ago
- eb6d430 Silence compiler warnings. by Ezio Melotti · 15 years ago
- 6e055d7 sqlite3: Fix a segfault on calling a connection with something else than a by Victor Stinner · 15 years ago
- 93dd9b8 #8011: use exc.tb_lineno instead of traceback.tb_lineno() and pep8ify variable names. by Ezio Melotti · 15 years ago
- c4785a7 fix broken links by Ezio Melotti · 15 years ago
- 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 15 years ago
- f1539bd Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine. by Georg Brandl · 15 years ago
- 7522734 NEWS: issue #7774 is related to Library (sys), not Core and Builtins by Victor Stinner · 15 years ago
- f6d36745 Fix warnings from "make check". by Georg Brandl · 15 years ago
- 5542727 Get rid of backticks. by Georg Brandl · 15 years ago
- ecfa08f Issue #8117: Updated NEWS entry and added to logging documentation. by Vinay Sajip · 15 years ago
- 9098ee4 Issue #8117: logging: Improved algorithm for computing initial rollover time. by Vinay Sajip · 15 years ago
- 654ea37 remove shebang line from non-executable test by Benjamin Peterson · 15 years ago