1. cdbc977 Install 2to3 script. by Martin v. Löwis · 17 years ago
  2. 9bdead0 #1700821: add a note to audioop docs about signedness of sample formats. by Georg Brandl · 17 years ago
  3. b72233c Issue 2460: Make Ellipsis objects copyable. by Raymond Hettinger · 17 years ago
  4. d145240 Tighten documentation for Random.triangular. by Raymond Hettinger · 17 years ago
  5. 966d0e0 Merged revisions 61724-61824 via svnmerge from by Martin v. Löwis · 17 years ago
  6. 440ca77 Have the binascii module use zlib's optimized crc32() function when available by Gregory P. Smith · 17 years ago
  7. dd10284 prevent a warning from the struct module when data size >= 2**32. by Gregory P. Smith · 17 years ago
  8. ac830e9 A bugfix for r61813, it would fail if the data size was >=2**32. by Gregory P. Smith · 17 years ago
  9. be446b4 replace calls to get the initial values with the raw constants. by Gregory P. Smith · 17 years ago
  10. 79b4ba8 Fix gzip to deal with CRC's being signed values in Python 2.x properly and to by Gregory P. Smith · 17 years ago
  11. 73f57b0 Revert r61779 - It undid correct code and caused test_zlib to fail on all by Gregory P. Smith · 17 years ago
  12. c4f7bab Adopt Nick's suggestion for useful default arguments. by Raymond Hettinger · 17 years ago
  13. bbc50ea Issue 1681432: Add triangular distribution the random module. by Raymond Hettinger · 17 years ago
  14. 9a0d346 #1477: ur'\U0010FFFF' raised in narrow unicode builds. by Amaury Forgeot d'Arc · 17 years ago
  15. 6185433 Make the doctests presentation-friendlier. by Georg Brandl · 17 years ago
  16. ade57d0 Remove compiler warnings (on Alpha at least) about using chars as by Neal Norwitz · 17 years ago
  17. acdb6fb Try to prevent the alarm going off early in tearDown by Neal Norwitz · 17 years ago
  18. 0d2192b Move itertools before future_builtins since the latter depends on the former. by Neal Norwitz · 17 years ago
  19. 41d6491 Suppress failure (to avoid a flaky test) if we cannot connect to svn.python.org by Neal Norwitz · 17 years ago
  20. acbd642 Fix test_tarfile failures on Alpha (Tru64). The problem was caused in r61449 by Neal Norwitz · 17 years ago
  21. 3bda069 Skip the epoll test if epoll() does not work by Neal Norwitz · 17 years ago
  22. 162d719 Speed up the test by avoiding socket timeouts. by Neal Norwitz · 17 years ago
  23. 1f2995b Try to make this test a little more robust and not fail with: by Neal Norwitz · 17 years ago
  24. e70bb8d Simplify demo code. by Raymond Hettinger · 17 years ago
  25. e8f1b00 Enable doctest running for several other documents. by Georg Brandl · 17 years ago
  26. 7a45ab8 Enable doctests in functions.rst. Already found two errors :) by Georg Brandl · 17 years ago
  27. 4f0f34f Test doctests in operator docs. by Georg Brandl · 17 years ago
  28. 3f04303 Test doctests in datetime docs. by Georg Brandl · 17 years ago
  29. 4c8bbe6 Make collections' doctests executable. by Georg Brandl · 17 years ago
  30. 3dd5781 Fix-up syntax problems. by Georg Brandl · 17 years ago
  31. 838b4b0 No need to specify explicit "doctest_block" anymore. by Georg Brandl · 17 years ago
  32. 473f164 Make more doctests in pprint docs testable. by Georg Brandl · 17 years ago
  33. 6199e32 Make doctests in re docs usable with sphinx' doctest. by Georg Brandl · 17 years ago
  34. 9f66232 Test decimal.rst doctests as far as possible with sphinx doctest. by Georg Brandl · 17 years ago
  35. 09a7fe6 Fixup this HOWTO's doctest blocks so that they can be run with sphinx' doctest builder. by Georg Brandl · 17 years ago
  36. b98fe5a Allow giving source names on the cmdline. by Georg Brandl · 17 years ago
  37. 17baef0 Activate the Sphinx doctest extension and convert howto/functional to use it. by Georg Brandl · 17 years ago
  38. 86f38c8 #1918: document that weak references *to* an object are by Georg Brandl · 17 years ago
  39. ab68a3d Added warning for the removal of 'hotshot' in Py3k. by Alexandre Vassalotti · 17 years ago
  40. 6415667 Small fix that complicated the test actually when that test failed. by Facundo Batista · 17 years ago
  41. 3e838dd Install lib2to3. by Martin v. Löwis · 17 years ago
  42. baf267c Merged revisions 61602-61723 via svnmerge from by Martin v. Löwis · 17 years ago
  43. 0e9ab5f Applied patch #1657 epoll and kqueue wrappers for the select module by Christian Heimes · 17 years ago
  44. 5f79446 Add missing versionadded tag. by Georg Brandl · 17 years ago
  45. d290b04 Replace hack in regrtest.py with use of sys.py3kwarning. by Steven Bethard · 17 years ago
  46. c326801 Update doc ACKS. by Georg Brandl · 17 years ago
  47. 4ab9feb #2160: document PyImport_GetImporter. by Georg Brandl · 17 years ago
  48. 65bb42d #2348: add py3k warning for file.softspace. by Georg Brandl · 17 years ago
  49. 07e5681 #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich. by Georg Brandl · 17 years ago
  50. 5a44424 #2358: add py3k warning to sys.exc_clear(). by Georg Brandl · 17 years ago
  51. 77354cf Issue #2432: give DictReader the dialect and line_num attributes by Georg Brandl · 17 years ago
  52. 3312432 #2136: allow single quotes in realm spec. by Georg Brandl · 17 years ago
  53. d346475 Add docs for print_function and future_builtins. Fixes #2442. by Georg Brandl · 17 years ago
  54. 3fbe20c Add docs for __func__ and __self__ on methods. by Georg Brandl · 17 years ago
  55. 0629118 Fix a code block in __future__ docs. by Georg Brandl · 17 years ago
  56. 510eab5 Speed test_threading up from 14s to .5s, and avoid a deadlock on certain by Jeffrey Yasskin · 17 years ago
  57. 413f588 Try to fix test_signal on FreeBSD. I'm assuming that os.kill is failing to by Jeffrey Yasskin · 17 years ago
  58. 859043c Fix markup. by Georg Brandl · 17 years ago
  59. 9c6c47b Mark the descitems in the tutorial as "noindex" so that :meth: cross-refs don't link to them. by Georg Brandl · 17 years ago
  60. 6cda88e Try to fix test_signal breakages on Linux due to r61687. It appears that at by Jeffrey Yasskin · 17 years ago
  61. cf26f54 Speed up test_signal from ~24s to 4s by avoiding nearly all of the sleep calls. by Jeffrey Yasskin · 17 years ago
  62. 816a168 Comment how 'from __future__ import print_function' operates in 3.0. by Eric Smith · 17 years ago
  63. 33dd094 Fixed PEP name. by Eric Smith · 17 years ago
  64. 9cf2f5d Add lots of items by Andrew M. Kuchling · 17 years ago
  65. 4e0c72b Clarfiy the availability of the extended support for win32_ver() in Py2.6. by Marc-André Lemburg · 17 years ago
  66. a186775 Add news items for platform module changes. by Marc-André Lemburg · 17 years ago
  67. 53c7a60 Add documentation for updated Windows support in win32_ver(). by Marc-André Lemburg · 17 years ago
  68. dbd61a2 If Mark Hammonds win32 tools are not available, try to use the _winreg module by Marc-André Lemburg · 17 years ago
  69. fa6a8b3 Gave Jerry Seutter svn access for general Python development. by Brett Cannon · 17 years ago
  70. 402b270 #2383: remove obsolete XXX comment in stat.py. by Georg Brandl · 17 years ago
  71. 6af3db8 Attempt to fix the Solaris Sparc 10 buildbot. It was failing with an invalid by Gregory P. Smith · 17 years ago
  72. 45ea86c Issue 2188: Documentation hint about disabling proxy detection. by Sean Reifscheider · 17 years ago
  73. 00b53ea Revert r61650; the intent of this commit was to try and address alarm failures on some of the build slaves. As Neal points out, it's called after test_main(), so it's not going to factor into the test when run via regrtest.py (and removes the original functionality that Jeffrey wanted that would kill the test if it took longer than 3 seconds to run when executing it directly during development). by Trent Nelson · 17 years ago
  74. 68fa8e6 Forgot to add NEWS item about smtplib SSL readline hang fix. by Sean Reifscheider · 17 years ago
  75. ac2ed1e Issue #2143: Fix embedded readline() hang on SSL socket EOF. by Sean Reifscheider · 17 years ago
  76. a5cfcad Prevent ioctl op codes from being sign extended from int to unsigned long by Gregory P. Smith · 17 years ago
  77. 48581c5 Make sure that the warnings filter is not reset or changed beyond the current by Brett Cannon · 17 years ago
  78. a0ce6b6 Bump the SIGALM delay from 3 seconds to 20 seconds, mainly in an effort to see if it fixes the alarm failures in this test experienced by some of the buildbots. by Trent Nelson · 17 years ago
  79. c71d2a9 Remove unnecessary traceback save/restore pair. by Raymond Hettinger · 17 years ago
  80. 27f60a6 Comment out tcltk/tcltk64 removal. by Trent Nelson · 17 years ago
  81. f15cde3 Improve the error message when the CRCs don't match. by Gregory P. Smith · 17 years ago
  82. e7abf20 Force a clean of the tcltk/tcltk64 directories now that we've completely changed the tcl/tk build environment. by Trent Nelson · 17 years ago
  83. 611c86b Fix the x64 Windows build environment used by the buildbots. %VS90COMNTOOLS%\vsvars32.bat is fine for 32-bit builds, but doesn't work for x64 builds, regardless of /MACHINE:AMD64 and /USECL:MS_OPTERON flags passed to cl.exe. Launch the x86_64 cross compilation environment via '%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat x86_amd64'. I don't have access to any systems *without* Visual Studio 2008 Professional installed (i.e. just Express Edition), so I can't test if x64 compilation works w/ VS Express at the moment. by Trent Nelson · 17 years ago
  84. 0ccfe5f Remove itertools warnings I had added before the 2-to-3 handled the migration. by Raymond Hettinger · 17 years ago
  85. 10dca6e The filter() function does support a None argument in Py3.0. by Raymond Hettinger · 17 years ago
  86. 0538786 Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. by Raymond Hettinger · 17 years ago
  87. 977eb02 Use sys.py3kwarning instead of trying to trigger a Py3k-related warning. by Brett Cannon · 17 years ago
  88. 7919d98 test_nis would fail if test.test_support.verbose was true but NIS was not set by Brett Cannon · 17 years ago
  89. 12b580b Checkout sqlite-source when it is not there. by Thomas Heller · 17 years ago
  90. 8ff4963 Trivial typo. by Eric Smith · 17 years ago
  91. e504445 Use test.test_support.captured_stdout instead of a custom contextmanager. by Eric Smith · 17 years ago
  92. 4f4738f Lets have another try at getting the Windows buildbots in a consistent state before rebuilding using the new process. by Trent Nelson · 17 years ago
  93. 4fbaaca Fix the tcl-8.4.18.1 path and make sure we cd into the right directory when building tcl/tk. by Trent Nelson · 17 years ago
  94. 97e863e Another one. by Georg Brandl · 17 years ago
  95. 482d752 Remove footnote from versionchanged as it upsets LaTeX. by Georg Brandl · 17 years ago
  96. 2b1ec17 Remove extraneous apostrophe and semi-colon from AdditionalIncludeDirectories. by Trent Nelson · 17 years ago
  97. 05a9664 Refine the Visual Studio 2008 build solution in order to improve how we deal with external components, as well as fixing outstanding issues with Windows x64 build support. Introduce two new .vcproj files, _bsddb44.vcproj and sqlite3.vcproj, which replace the previous pre-link event scripts for _bsddb and _sqlite3 respectively. The new project files inherit from our property files as if they were any other Python module. This has numerous benefits. First, the components get built with exactly the same compiler flags and settings as the rest of Python. Second, it makes it much easier to debug problems in the external components when they're part of the build system. Third, they'll benefit from profile guided optimisation in the release builds, just like the rest of Python core. by Trent Nelson · 17 years ago
  98. b27745f Issue2290: Support x64 Windows builds that live in pcbuild/amd64. Without it, sysutils._python_build() returns the wrong directory, which causes the test_get_config_h_filename method in Lib/distutils/tests/test_sysconfig.py to fail. by Trent Nelson · 17 years ago
  99. 16b2e6b Import relimport using a relative import. by Martin v. Löwis · 17 years ago
  100. ab41b37 Merged revisions 61598-61599,61601 via svnmerge from by Martin v. Löwis · 17 years ago