1. 7adc776 Issue 2408: remove the _types module by Amaury Forgeot d'Arc · 16 years ago
  2. 24f3c5c Prevent an error when inspect.isabstract() is called with something else than a new-style class. by Amaury Forgeot d'Arc · 16 years ago
  3. 4b798bd Issue2564: Prevent a hang in "import test.autotest", which runs the entire test by Amaury Forgeot d'Arc · 16 years ago
  4. abf8e01 Add items by Andrew M. Kuchling · 16 years ago
  5. 775e10d Suppress compilation of py3_ files upon installation. by Martin v. Löwis · 16 years ago
  6. eba0004 Typographical fix: 32bit -> 32-bit, 64bit -> 64-bit by Andrew M. Kuchling · 16 years ago
  7. 5b1070a Typo fix by Andrew M. Kuchling · 16 years ago
  8. 34be7ce Write PEP 3127 section; add items by Andrew M. Kuchling · 16 years ago
  9. 4a16723 #2525: update timezone info examples in the docs. by Georg Brandl · 16 years ago
  10. 1e72fec Make the "private CRT" case work, by editing the by Martin v. Löwis · 16 years ago
  11. 46a8be7 Drop support for 7.1 CRT. by Martin v. Löwis · 16 years ago
  12. e411f89 Make private_crt feature object a global variable. by Martin v. Löwis · 16 years ago
  13. 54d489a Delete ALLUSERS property merged from CRT merge module, so that per-user installations become possible again. by Martin v. Löwis · 16 years ago
  14. 5285760 changed "2500 components" to "several thousand" since the number keeps by Mark Summerfield · 16 years ago
  15. c20adf8 Use the new PyFile_IncUseCount & PyFile_DecUseCount calls appropriatly by Gregory P. Smith · 16 years ago
  16. d918e4e Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. by Martin v. Löwis · 16 years ago
  17. 295814e correct heading underline for new "Cross-compiling on Windows" section by Mark Hammond · 16 years ago
  18. 495cf99 Issue #2513: enable 64bit cross compilation on windows. by Mark Hammond · 16 years ago
  19. aa63d0d Make file objects as thread safe as the underlying libc FILE* implementation. by Gregory P. Smith · 16 years ago
  20. ee76777 Add enough debugging information to diagnose failures where the by Jeffrey Yasskin · 16 years ago
  21. 5a4d668 Don't run kill_python as part of the build process. Change the buildbots so they have to call it explicitly instead. by Trent Nelson · 16 years ago
  22. 28112d0 type by Skip Montanaro · 16 years ago
  23. 8a3c871 From issue 1753245 - better _winreg support for x64. by Mark Hammond · 16 years ago
  24. 2fab8f1 Fix test_distutils to not fail when running 'make test' from a Python build by Thomas Wouters · 16 years ago
  25. 9e0fa7a Declare inittimezone static. by Skip Montanaro · 16 years ago
  26. 2185241 Write PEP 3119 section by Andrew M. Kuchling · 16 years ago
  27. 3b1202d Mention that the tuple returned by __reduce__ is pickled as normal. by Georg Brandl · 16 years ago
  28. 217057f Markup fixes; write PEP 3118 section by Andrew M. Kuchling · 16 years ago
  29. db508be Add script to merge msvcr90. by Martin v. Löwis · 16 years ago
  30. 4dc3415 Add two features to distinguish between private and SxS CRT. by Martin v. Löwis · 16 years ago
  31. 5f187fb Extend sizes of various fields, to support the CRT90 merge module. by Martin v. Löwis · 16 years ago
  32. 8510195 Prevent test_sqlite from hanging on older versions of sqlite. by Neal Norwitz · 16 years ago
  33. b2ff8a7 Various edits by Andrew M. Kuchling · 16 years ago
  34. 1f2af8c Markup fix; explain what interval timers do; typo fix by Andrew M. Kuchling · 16 years ago
  35. 9ff4aea Minor edits by Andrew M. Kuchling · 16 years ago
  36. 4bffe82 Revert r62152 (Issue #2550). Being able to observe the results of all the buildbots was certainly useful. All of the platforms that have some form of BSD lineage -- FreeBSD, OS X, Solaris and Tru64 -- all pass the test. Windows and Linux, on the other hand, don't. Windows I knew about, Linux was a surprise. Knowing this, I believe a more appropriate fix will revolve around test_support.bind_socket() -- this method needs to return a port that nothing in the system has bound already. The best way to do this may just be to rely on ephemeral ports, rather than having the user specify a desired port, then fall back to four random ports, then try 0. by Trent Nelson · 16 years ago
  37. f790648 News entry for: Sync with files from the just released libffi 3.0.5 version. by Thomas Heller · 16 years ago
  38. c4ef476 More files from libffi 3.0.5. by Thomas Heller · 16 years ago
  39. b8e120c Issue 2550: extend test_socket.py to test SO_REUSEADDR semantics when bind() is called on identical (host, port) combinations in two separate sockets. This should raise an EADDRINUSE socket.error in all cases, irrespective of whether or not SO_REUSEADDR is set on the sockets. However, with Windows, when SO_REUSEADDR is set on the sockets, no error is thrown (an error is thrown when the option isn't set), which results in an extremely wedged python process whenever accept() is called on either of the bound sockets. I'm committing this test now to observe if it's only Windows that has this behaviour (via the buildbots). Note: this WILL break all Windows buildbots for now; once I've observed the results on other platforms, I'll revert, then start looking into a patch. by Trent Nelson · 16 years ago
  40. e71d812 Oops again. EINTR is in errno, not signal. by Jeffrey Yasskin · 16 years ago
  41. e1929d5 Sync with files from the just released libffi 3.0.5 version. by Thomas Heller · 16 years ago
  42. 44965155 stupid, stupid, stupid! by Fred Drake · 16 years ago
  43. fe70562 my previous change did what I said it should not: it changed the current by Fred Drake · 16 years ago
  44. dc96a77 Issue #2544: On HP-UX systems, use 'gcc -shared' for linking when gcc by Thomas Heller · 16 years ago
  45. 8e8ba15 Issue #2543: Make ctypes compatible (again) with Python 2.3, 2.4, and 2.5. by Thomas Heller · 16 years ago
  46. 46c58c1 - Issue #2385: distutils.core.run_script() makes __file__ available, so the by Fred Drake · 16 years ago
  47. 2b860db Doh! os.read() raises an OSError, not an IOError when it's interrupted. by Jeffrey Yasskin · 16 years ago
  48. ba43774 post release updates by Barry Warsaw · 16 years ago
  49. d7a2651 #1733757: the interpreter would hang on shutdown, if the function set by sys.settrace by Amaury Forgeot d'Arc · 16 years ago
  50. 2aae1d9 Make kill_python a little more forgiving if it can't obtain a snapshot of module information for a given python[_d].exe process. Failing here was too pessimistic; the python[_d].exe process may be owned by another user, which is the case in some buildbot environments. by Trent Nelson · 16 years ago
  51. 8d69c1f Add the correct OutputFile values for debug builds. Fixes r62129's commit. by Trent Nelson · 16 years ago
  52. d6dffbc Reimplement kill_python. The existing version had a number of flaws, namely, it didn't work for x64 and it wasn't precise about which python_d.exe it was killing -- it just killed the first one it came across that happened to have 'pcbuild\python_d.exe' or 'build\python_d.exe' in it's path. The new version has been rewritten from the ground up and now lives in PCbuild, instead of Tools\buildbot, and it has also been incorporated into the Visual Studio solution (pcbuild.sln) as 'kill_python'. The solution has also been altered such that kill_python is called where necessary in the build process in order to prevent any linking errors due to open file locks. In lieu of this, all of the existing bits and pieces in Tools\buildbot that called out to kill_python at various points have also been removed as they are now obsolete. Tested on both Win32 and x64. by Trent Nelson · 16 years ago
  53. 980c598 Remove the building of Berkeley DB step; _bsddb44.vcproj takes care of this for us now. by Trent Nelson · 16 years ago
  54. 01d71f9 Post tag version tweak by Barry Warsaw · 16 years ago
  55. b1a8964 Create the tag for 2.6a2 by Barry Warsaw · 16 years ago
  56. 9649cdd Updating for 2.6a2 by Barry Warsaw · 16 years ago
  57. b235500 Suggested proposed changes to Python be considered on some mailing lists first by Benjamin Peterson · 16 years ago
  58. f7cf388 Remove debug prints; the buildbot now passes the tests by Amaury Forgeot d'Arc · 16 years ago
  59. 89a01cd Added updates with respect to recent changes to TimedRotatingFileHandler. by Vinay Sajip · 16 years ago
  60. b7edfc4 Added updates with respect to recent changes to TimedRotatingFileHandler. by Vinay Sajip · 16 years ago
  61. e5aefa0 Fix: #2315, #2316, #2317: TimedRotatingFileHandler - changed logic to better handle daylight savings time, deletion of old log files, and fixed a bug in calculating rollover when no logging occurs for a longer interval than the rollover period. by Vinay Sajip · 16 years ago
  62. dbc114a Update information pertaining to building external components, as well as notes on x64 builds. This file now accurately describes the build process as is; however, there's still a lot of room for improvement, especially with regards to how we build Tcl/Tk, Tix, and OpenSSL. Watch this space for further improvements. by Trent Nelson · 16 years ago
  63. d0a91af Apply same patch from 3k branch to try and prevent this test from hanging by Neal Norwitz · 16 years ago
  64. ab56131 Try to make test_signal less flaky. I still see some flakiness in by Jeffrey Yasskin · 16 years ago
  65. cb0f2ad A DocTestSuite cannot run multiple times: it clears its globals dictionary after the first run. by Amaury Forgeot d'Arc · 16 years ago
  66. 4d0c117 Correct the apparent refleak in test_io: by Amaury Forgeot d'Arc · 16 years ago
  67. b1ba750 Remove the advertising clause from the BSD license in timing.h. by Guido van Rossum · 16 years ago
  68. f0a4970 Newly enabled test appears to leak: by Amaury Forgeot d'Arc · 16 years ago
  69. ce6f6c1 Fix and enable a skipped test: by Amaury Forgeot d'Arc · 16 years ago
  70. 8820f2a Add ``if __name__ == '__main__'`` to some test files where it didn't take a lot by Brett Cannon · 16 years ago
  71. 8d2a90a Generalize test.test_support.test_stdout() with a base context manager so that by Brett Cannon · 16 years ago
  72. d48a2f7 Be sure to close the file. 2 places were deleting the file, so it was probably by Neal Norwitz · 16 years ago
  73. 092a1f7 PyErr_Warn is decrepated. Use PyErr_WarnEx by Benjamin Peterson · 16 years ago
  74. affbe80 Merged revisions 61990-62079 via svnmerge from by Martin v. Löwis · 16 years ago
  75. 371d174 Use file.write instead of print to make it easier to merge with 3k. by Neal Norwitz · 16 years ago
  76. 105f3d4 Block the sys.exc_clear -3 warning from threading.py. by Jeffrey Yasskin · 16 years ago
  77. e34c21c Make AST nodes pickleable. by Georg Brandl · 16 years ago
  78. 1721e75 Fix error message -- "expects either 0 or 0 arguments" by Georg Brandl · 16 years ago
  79. 1c88e0f The other download formats will be available for 2.6 too. by Georg Brandl · 16 years ago
  80. 9d0b604 Updated README regarding doc formats by Benjamin Peterson · 16 years ago
  81. 2c55c59 Make _fields attr for no fields consistent with _attributes attr. by Georg Brandl · 16 years ago
  82. ebc8ded Convert test_ast to unittest and add a test for r62049. by Georg Brandl · 16 years ago
  83. c52ed59 #2505: allow easier creation of AST nodes. by Georg Brandl · 16 years ago
  84. c87c580 Adapt test_ast to the new ExceptHandler type. by Georg Brandl · 16 years ago
  85. a48f3ab Patch #2511: Give the "excepthandler" AST item proper attributes by making it a Sum. by Georg Brandl · 16 years ago
  86. c15317e Documented the lastrowid attribute. by Gerhard Häring · 16 years ago
  87. 5b63acd #2503 make singletons compared with "is" not == or != by Benjamin Peterson · 16 years ago
  88. 672fbf5 Still investigating on the hanging test_socket. by Amaury Forgeot d'Arc · 16 years ago
  89. 5e08e8b The buildbot "x86 W2k8 trunk" seems to hang in test_socket. by Amaury Forgeot d'Arc · 16 years ago
  90. f2bfd54 Properly check for consistency with the third argument of by Georg Brandl · 16 years ago
  91. ea13dc6 Now that Lib/test/output is gone, tests should not print anything, by Amaury Forgeot d'Arc · 16 years ago
  92. bae17a8 lib2to3 should install a logging handler only when run as a main program, by Amaury Forgeot d'Arc · 16 years ago
  93. 0069d85 Fix capitalization. by Georg Brandl · 16 years ago
  94. 594b76b Be explicit about what efficient means. by Raymond Hettinger · 16 years ago
  95. 91e0cda Backport #1442: report exception when startup file cannot be run. by Georg Brandl · 16 years ago
  96. 2aece57 Correctly call the base class tearDown(); by Amaury Forgeot d'Arc · 16 years ago
  97. 504a48f Revert my experiment. I found one reason of failures in test_logging. by Amaury Forgeot d'Arc · 16 years ago
  98. 4130930 Brought documentation for sqlite3 module up-to-date. Fixed Issue1625205 which by Gerhard Häring · 16 years ago
  99. 554d4f0 At least let the module compile by Amaury Forgeot d'Arc · 16 years ago
  100. 8a69707 Try to understand why most buildbots suddenly turned to red. by Amaury Forgeot d'Arc · 16 years ago