1. 4a0f8b8 Silence more py3k warnings in unittest.case. by Florent Xicluna · 15 years ago
  2. 236da4b Include structmember.h correctly. by Georg Brandl · 15 years ago
  3. ce00cf2 Update text for newest US DST regulation. The sample file already has the calculation right. by Georg Brandl · 15 years ago
  4. f23f0a2 Update os.kill() emulation example for Windows to use ctypes. by Georg Brandl · 15 years ago
  5. a39f2af Mention inefficiency of lists as queues, add link to collections.deque discussion. by Georg Brandl · 15 years ago
  6. 0b56ce0 Clarify that for shell=True, the shell PID will be the child PID. by Georg Brandl · 15 years ago
  7. 0fcd882 Introduce copy by slicing, used in later chapters. by Georg Brandl · 15 years ago
  8. d1068be Document that GzipFile supports iteration. by Georg Brandl · 15 years ago
  9. 3814ddf Add a paragraph about set displays. by Georg Brandl · 15 years ago
  10. 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
  11. 118c557 Fix some issues found by Jacques Ducasse on the docs list. by Georg Brandl · 15 years ago
  12. 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
  13. 8cb253f Change order of arguments in a unittest function. by Michael Foord · 15 years ago
  14. 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
  15. 134fb10 Fix overzealous .hgignore file by Antoine Pitrou · 15 years ago
  16. fc5f6a7 Cleanup test_tarfile, and use check_warnings. by Florent Xicluna · 15 years ago
  17. db4a321 Cleanup test_struct using check_warnings. by Florent Xicluna · 15 years ago
  18. 2405547 wrap by Benjamin Peterson · 15 years ago
  19. d47667c document exitfunc fixer by Benjamin Peterson · 15 years ago
  20. 98e7b76 Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual and changing behaviour by Michael Foord · 15 years ago
  21. 2e6d262 #8178 Cleanup the threads after test_thread.TestForkInThread. by Florent Xicluna · 15 years ago
  22. b2efeff Fixing the file call in the rfc822.Message replacement example. by Sean Reifscheider · 15 years ago
  23. 95ce1fc Adding an example of reproducing the rfc822.Message() parsing. by Sean Reifscheider · 15 years ago
  24. cc1d06b set svn:eol-style to native on C files by Benjamin Peterson · 15 years ago
  25. a317e77 Initialized merge tracking via "svnmerge" with revisions "1-79104" from by Thomas Heller · 15 years ago
  26. 67e37f2 update libffi to commit 59a259f4d348f593b45f452309f4d020a28051c4 from the by Matthias Klose · 15 years ago
  27. bc27c6a Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* and setUp/tearDown. by Florent Xicluna · 15 years ago
  28. 4854c96 Generate libffi's Makefiles again to be able to run the libffi testsuite by Matthias Klose · 15 years ago
  29. e9fbf2b - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument. by Matthias Klose · 15 years ago
  30. f4fd0bf keep DeprecationWarning from failing test by Benjamin Peterson · 15 years ago
  31. 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
  32. 00dd3f5 Add a separate python-config make target, useful for testing changes to Misc/python-config.in. by Collin Winter · 15 years ago
  33. 52d4aea make compiler's py3k warning a full deprecation warning #6837 by Benjamin Peterson · 15 years ago
  34. d8fdd7e reignore bad_coding by Benjamin Peterson · 15 years ago
  35. e30b3fa these lines can now be dispensed with by Benjamin Peterson · 15 years ago
  36. 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
  37. 2e0a53f Issue #8024: Update the Unicode database to 5.2 by Florent Xicluna · 15 years ago
  38. decd14b install tkinter and ttk tests by Benjamin Peterson · 15 years ago
  39. a2797bd remove installation of deleted test/output dir by Benjamin Peterson · 15 years ago
  40. 716869c don't try to compile anything in lib2to3/tests/data #8169 by Benjamin Peterson · 15 years ago
  41. 7358854 #8155: Preserve backward compatibility for test_support.check_warnings(). Add regression tests. by Florent Xicluna · 15 years ago
  42. f3e9b2a Fix for Issue8135 - urllib.unquote to support mixed percent escapes by Senthil Kumaran · 15 years ago
  43. 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
  44. d7b731d Issue #8104: socket.recv_into() and socket.recvfrom_into() now support by Antoine Pitrou · 15 years ago
  45. 2227251 Fix a race condition in test_asynchat uncovered by the Unladen Swallow JIT. by Collin Winter · 15 years ago
  46. 0dee9c1 prevent lambda functions from having docstrings #8164 by Benjamin Peterson · 15 years ago
  47. 78c1871 Fix and check cgi module deprecation warnings. Revert an unwanted rename in test_import. by Florent Xicluna · 15 years ago
  48. 945a8ba Cleanup some test cases using check_warnings and check_py3k_warnings. by Florent Xicluna · 15 years ago
  49. 2b73c21 Cleanup in test_import and test_coding. by Florent Xicluna · 15 years ago
  50. 7864312 Avoid hardcoding refcounts in tests. by Collin Winter · 15 years ago
  51. 2060e42 Issue #8162: logging: Clarified docstring and documentation for disable function. by Vinay Sajip · 15 years ago
  52. 187f93d Use "x in y" instead of y.find(x) != -1. by Ezio Melotti · 15 years ago
  53. d80b4bf #7092: silence some more py3k warnings. by Ezio Melotti · 15 years ago
  54. 8b3f1ce Delete unused import. by Collin Winter · 15 years ago
  55. 89b4f13 Style cleanup in test_import. by Collin Winter · 15 years ago
  56. 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
  57. 3436064 Integrate merge.py into msi.py. by Martin v. Löwis · 15 years ago
  58. 8b41168 - Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox by Matthias Klose · 15 years ago
  59. 3cc8f21 Issue #7783 and #7787: open_urlresource invalidates the outdated files from the local cache. by Florent Xicluna · 15 years ago
  60. fae23dc - Fix typo in Lib/compileall.py(__all__). by Matthias Klose · 15 years ago
  61. b13d04c - Issue #8140: extend compileall to compile single files. Add -i option. by Matthias Klose · 15 years ago
  62. dc36472 Remove py3k deprecation warnings from these Unicode tools. by Florent Xicluna · 15 years ago
  63. 358e7ff - Issue #7356: ctypes.util: Make parsing of ldconfig output independent of by Matthias Klose · 15 years ago
  64. 24e4e16 Issue #6716: Quote -x arguments of compileall in MSI installer. by Martin v. Löwis · 15 years ago
  65. 54cc539 - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x. by Matthias Klose · 15 years ago
  66. f568139 clean up files correctly by Benjamin Peterson · 15 years ago
  67. 5a4c0f5 remove mac 9 code by Benjamin Peterson · 15 years ago
  68. ca02f3a this little exception dance is pointless by Benjamin Peterson · 15 years ago
  69. d72ca85 Backport from the libffi trunk: by Matthias Klose · 15 years ago
  70. 817acef - Issue #8142: Update libffi to the 3.0.9 release. by Matthias Klose · 15 years ago
  71. ece29b2 Do not hardcode Expat version. It's possible to build Python with --with-system-expat option. by Florent Xicluna · 15 years ago
  72. 3b2abe9 fix quotes by Benjamin Peterson · 15 years ago
  73. 11d9323 fix freebsd linking #7705 by Benjamin Peterson · 15 years ago
  74. 8122bdd Add a link about the Public Review Issue #29 by Ezio Melotti · 15 years ago
  75. 65db587 #8137: add iso-8859-16 to the standard encodings table. by Georg Brandl · 15 years ago
  76. ba83f82 Format and rewrap 2.7 NEWS consistently. by Georg Brandl · 15 years ago
  77. 88db6f4 Minor documentation updates for xml.etree. by Florent Xicluna · 15 years ago
  78. 02b3f0a Issue #7993: Add a test of IO packet processing bandwidth to ccbench. by Antoine Pitrou · 15 years ago
  79. a231e45 Add the keyword argument "method=None" to the .write() method and the tostring/tostringlist functions. by Florent Xicluna · 15 years ago
  80. 583302c Update some parts of the xml.etree documentation. by Florent Xicluna · 15 years ago
  81. a0fd4cc Add 2.6 uuids. by Martin v. Löwis · 15 years ago
  82. f1ff88f Fix incorrect error checks in structmember.c (backport of r78920 from py3k). by Mark Dickinson · 15 years ago
  83. 45534ce Update for new download location. by Georg Brandl · 15 years ago
  84. e82110f Change/fix handling of docs download location: for daily builds, put them right next to the HTML. by Georg Brandl · 15 years ago
  85. 1b51c3d Do not chdir when running test_xml_etree, and enhance the findfile helper. by Florent Xicluna · 15 years ago
  86. 13ba1a1 Move the xml test data to their own directory. by Florent Xicluna · 15 years ago
  87. fce7b86 Bump externals versions for doc build. by Georg Brandl · 15 years ago
  88. 3446583 Add Makefile targets for automatic doc build. Add script that will be used for daily build. by Georg Brandl · 15 years ago
  89. eb6d430 Silence compiler warnings. by Ezio Melotti · 15 years ago
  90. 6e055d7 sqlite3: Fix a segfault on calling a connection with something else than a by Victor Stinner · 15 years ago
  91. 93dd9b8 #8011: use exc.tb_lineno instead of traceback.tb_lineno() and pep8ify variable names. by Ezio Melotti · 15 years ago
  92. c4785a7 fix broken links by Ezio Melotti · 15 years ago
  93. 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 15 years ago
  94. 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
  95. 7522734 NEWS: issue #7774 is related to Library (sys), not Core and Builtins by Victor Stinner · 15 years ago
  96. f6d36745 Fix warnings from "make check". by Georg Brandl · 15 years ago
  97. 5542727 Get rid of backticks. by Georg Brandl · 15 years ago
  98. ecfa08f Issue #8117: Updated NEWS entry and added to logging documentation. by Vinay Sajip · 15 years ago
  99. 9098ee4 Issue #8117: logging: Improved algorithm for computing initial rollover time. by Vinay Sajip · 15 years ago
  100. 654ea37 remove shebang line from non-executable test by Benjamin Peterson · 15 years ago