1. 54cc539 - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x. by Matthias Klose · 14 years ago
  2. f568139 clean up files correctly by Benjamin Peterson · 14 years ago
  3. 5a4c0f5 remove mac 9 code by Benjamin Peterson · 14 years ago
  4. ca02f3a this little exception dance is pointless by Benjamin Peterson · 14 years ago
  5. d72ca85 Backport from the libffi trunk: by Matthias Klose · 14 years ago
  6. 817acef - Issue #8142: Update libffi to the 3.0.9 release. by Matthias Klose · 14 years ago
  7. ece29b2 Do not hardcode Expat version. It's possible to build Python with --with-system-expat option. by Florent Xicluna · 14 years ago
  8. 3b2abe9 fix quotes by Benjamin Peterson · 14 years ago
  9. 11d9323 fix freebsd linking #7705 by Benjamin Peterson · 14 years ago
  10. 8122bdd Add a link about the Public Review Issue #29 by Ezio Melotti · 14 years ago
  11. 65db587 #8137: add iso-8859-16 to the standard encodings table. by Georg Brandl · 14 years ago
  12. ba83f82 Format and rewrap 2.7 NEWS consistently. by Georg Brandl · 14 years ago
  13. 88db6f4 Minor documentation updates for xml.etree. by Florent Xicluna · 14 years ago
  14. 02b3f0a Issue #7993: Add a test of IO packet processing bandwidth to ccbench. by Antoine Pitrou · 14 years ago
  15. a231e45 Add the keyword argument "method=None" to the .write() method and the tostring/tostringlist functions. by Florent Xicluna · 14 years ago
  16. 583302c Update some parts of the xml.etree documentation. by Florent Xicluna · 14 years ago
  17. a0fd4cc Add 2.6 uuids. by Martin v. Löwis · 14 years ago
  18. f1ff88f Fix incorrect error checks in structmember.c (backport of r78920 from py3k). by Mark Dickinson · 14 years ago
  19. 45534ce Update for new download location. by Georg Brandl · 14 years ago
  20. e82110f Change/fix handling of docs download location: for daily builds, put them right next to the HTML. by Georg Brandl · 14 years ago
  21. 1b51c3d Do not chdir when running test_xml_etree, and enhance the findfile helper. by Florent Xicluna · 14 years ago
  22. 13ba1a1 Move the xml test data to their own directory. by Florent Xicluna · 14 years ago
  23. fce7b86 Bump externals versions for doc build. by Georg Brandl · 14 years ago
  24. 3446583 Add Makefile targets for automatic doc build. Add script that will be used for daily build. by Georg Brandl · 14 years ago
  25. eb6d430 Silence compiler warnings. by Ezio Melotti · 14 years ago
  26. 6e055d7 sqlite3: Fix a segfault on calling a connection with something else than a by Victor Stinner · 14 years ago
  27. 93dd9b8 #8011: use exc.tb_lineno instead of traceback.tb_lineno() and pep8ify variable names. by Ezio Melotti · 14 years ago
  28. c4785a7 fix broken links by Ezio Melotti · 14 years ago
  29. 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 14 years ago
  30. f1539bd Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine. by Georg Brandl · 14 years ago
  31. 7522734 NEWS: issue #7774 is related to Library (sys), not Core and Builtins by Victor Stinner · 14 years ago
  32. f6d36745 Fix warnings from "make check". by Georg Brandl · 14 years ago
  33. 5542727 Get rid of backticks. by Georg Brandl · 14 years ago
  34. ecfa08f Issue #8117: Updated NEWS entry and added to logging documentation. by Vinay Sajip · 14 years ago
  35. 9098ee4 Issue #8117: logging: Improved algorithm for computing initial rollover time. by Vinay Sajip · 14 years ago
  36. 654ea37 remove shebang line from non-executable test by Benjamin Peterson · 14 years ago
  37. 9cf41d0 normalize shebang lines to #!/usr/bin/env python by Benjamin Peterson · 14 years ago
  38. afa595b revert r78842 cgi.py change by Benjamin Peterson · 14 years ago
  39. 651bc32 use proper shebang lines by Benjamin Peterson · 14 years ago
  40. 75c8be0 remove executable property from doc files by Benjamin Peterson · 14 years ago
  41. e2e81e8 Fix repr of tree Element on windows. by Florent Xicluna · 14 years ago
  42. 3e8c189 Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cElementTree module is updated too. by Florent Xicluna · 14 years ago
  43. 4478662 Another fix to test_executable() of test_sys: set the current working to avoid by Victor Stinner · 14 years ago
  44. 6ecd85f Fix test_executable introduce in previous commit (r78835): Windows is able to by Victor Stinner · 14 years ago
  45. 4a7e0c85 Issue #7774: Set sys.executable to an empty string if argv[0] has been by Victor Stinner · 14 years ago
  46. 6376370 Revert r78830: realpath() should really be applied to sys.executable. by Florent Xicluna · 14 years ago
  47. 6602ec6 It is not optimal to test sys.stderr on a debug build. by Florent Xicluna · 14 years ago
  48. e58d91c Fix the test_subprocess failure when sys.executable is meaningless: '' or a directory. by Florent Xicluna · 14 years ago
  49. 8567761 Issue #7880: Fix sysconfig when the python executable is a symbolic link. by Florent Xicluna · 14 years ago
  50. 3ec3200 ooops, fix error message in execusercustomize() by Victor Stinner · 14 years ago
  51. 6664426 Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt by Victor Stinner · 14 years ago
  52. e9e07bf fix ugly configure output (follow up to #6943) by Benjamin Peterson · 14 years ago
  53. 3281067 handle an empty OPT variable correctly #8100 by Benjamin Peterson · 14 years ago
  54. 4d42f2b #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag. by Florent Xicluna · 14 years ago
  55. e30bc38 Improve code clarity a bit. by Raymond Hettinger · 14 years ago
  56. aba2293 Have links in OrderedDicts be native Python lists instead by Raymond Hettinger · 14 years ago
  57. 9bd3508 Add nicer docstrings to namedtuples(). by Raymond Hettinger · 14 years ago
  58. 08090bf Improve the basic example. by Raymond Hettinger · 14 years ago
  59. f4803aa set svn:eol-style on various files by Benjamin Peterson · 14 years ago
  60. d22557c Fix typo. by Georg Brandl · 14 years ago
  61. 47627d5 #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. by Florent Xicluna · 14 years ago
  62. 6f682be Move some tests from test_macpath to test_genericpath.CommonTest by Florent Xicluna · 14 years ago
  63. fed1576 Add various items by Andrew M. Kuchling · 14 years ago
  64. d034b32 On finalize, don't try to join not started process. by Florent Xicluna · 14 years ago
  65. faf1753 Replace the stderr logging with assertNotEqual(returncode, 0). by Florent Xicluna · 14 years ago
  66. cf741ce Fix syntax: "rc != None" -> "rc is not None" by Florent Xicluna · 14 years ago
  67. 5258477 Don't fail on a debug() statement, if the worker PID is (still) None. by Florent Xicluna · 14 years ago
  68. 05b0d1d Fix for issue 8066: readline should not be linked against libedit when the by Ronald Oussoren · 14 years ago
  69. cd0ace3 remove svn:executable from scripts without a shebang line by Benjamin Peterson · 14 years ago
  70. 4617e50 Issue #7143: get_payload used to strip any trailing newline from a by R. David Murray · 14 years ago
  71. 16cd888 Backport the Popen.poll() protection from subprocess to multiprocessing. See #1731717. by Florent Xicluna · 14 years ago
  72. 08611b5 Remove accidental print statement from last commit. by Michael Foord · 14 years ago
  73. a715255 Fix accidental name rebinding in unittest py3k warning filtering. by Michael Foord · 14 years ago
  74. 5ffa325 Addition of setUpClass and setUpModule shared fixtures to unittest. by Michael Foord · 14 years ago
  75. 0d4bfec #8044: document Py_{Enter,Leave}RecursiveCall functions. by Georg Brandl · 14 years ago
  76. 38c7203 #8039: document conditional expressions better, giving them their own section. by Georg Brandl · 14 years ago
  77. 303e675 #8085: The function is called PyObject_NewVar, not PyObject_VarNew. by Georg Brandl · 14 years ago
  78. 53e8eea Fix for potentials errors in constructing unittest failure messages. Plus skipped test methods no longer run setUp and tearDown (Issue 8059) by Michael Foord · 14 years ago
  79. fc8a1ed Refresh the documentation for the test.test_support module. by Florent Xicluna · 14 years ago
  80. 400efc2 #2777: Try hard to make Win7 buildbot happy... by Florent Xicluna · 14 years ago
  81. 2db5687 Silence compiler warning. by Mark Dickinson · 14 years ago
  82. 154b7ad Issue #1530559: When packing a non-integer with any integer conversion by Mark Dickinson · 14 years ago
  83. c083864 Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platforms. by Florent Xicluna · 14 years ago
  84. 21e99f4 #5341: more built-in vs builtin fixes. by Georg Brandl · 14 years ago
  85. c02bbe3 #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms. by Florent Xicluna · 14 years ago
  86. 6de9e93 Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are by Florent Xicluna · 14 years ago
  87. 1f3b4e1 Fix some py3k warnings in the standard library. by Florent Xicluna · 14 years ago
  88. 2a4ab81 Fix for issue #7998: pythonw didn't work when --with-framework-name was by Ronald Oussoren · 14 years ago
  89. 4e62949 Reverting the change made in r78431. by Senthil Kumaran · 14 years ago
  90. 6b31fd0 eliminate py3k warnings in argparse by Benjamin Peterson · 14 years ago
  91. 9c4742e more specific exception for wrong kind of raise #8082 by Benjamin Peterson · 14 years ago
  92. 5da7e7c post release update by Benjamin Peterson · 14 years ago
  93. fd0bb19 tag 2.7 alpha 4 by Benjamin Peterson · 14 years ago
  94. 8e7c117 bump version to 2.7a4 by Benjamin Peterson · 14 years ago
  95. 632df99 Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a4 release. by Florent Xicluna · 14 years ago
  96. 985478d Minor tweaking of previous r78734, and add a NEWS entry. by Florent Xicluna · 14 years ago
  97. dc1531c Create test_genericpath.CommonTest and reuse it to test other path modules. by Florent Xicluna · 14 years ago
  98. 5852641 Do not print the header lines when running a single test. by Florent Xicluna · 14 years ago
  99. 1adbee2 Added checks for tuples in dictConfig. by Vinay Sajip · 14 years ago
  100. d45a278 Added schema version test in dictConfig. by Vinay Sajip · 14 years ago