1. d346475 Add docs for print_function and future_builtins. Fixes #2442. by Georg Brandl · 17 years ago
  2. 3fbe20c Add docs for __func__ and __self__ on methods. by Georg Brandl · 17 years ago
  3. 0629118 Fix a code block in __future__ docs. by Georg Brandl · 17 years ago
  4. 510eab5 Speed test_threading up from 14s to .5s, and avoid a deadlock on certain by Jeffrey Yasskin · 17 years ago
  5. 413f588 Try to fix test_signal on FreeBSD. I'm assuming that os.kill is failing to by Jeffrey Yasskin · 17 years ago
  6. 859043c Fix markup. by Georg Brandl · 17 years ago
  7. 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
  8. 6cda88e Try to fix test_signal breakages on Linux due to r61687. It appears that at by Jeffrey Yasskin · 17 years ago
  9. cf26f54 Speed up test_signal from ~24s to 4s by avoiding nearly all of the sleep calls. by Jeffrey Yasskin · 17 years ago
  10. 816a168 Comment how 'from __future__ import print_function' operates in 3.0. by Eric Smith · 17 years ago
  11. 33dd094 Fixed PEP name. by Eric Smith · 17 years ago
  12. 9cf2f5d Add lots of items by Andrew M. Kuchling · 17 years ago
  13. 4e0c72b Clarfiy the availability of the extended support for win32_ver() in Py2.6. by Marc-André Lemburg · 17 years ago
  14. a186775 Add news items for platform module changes. by Marc-André Lemburg · 17 years ago
  15. 53c7a60 Add documentation for updated Windows support in win32_ver(). by Marc-André Lemburg · 17 years ago
  16. dbd61a2 If Mark Hammonds win32 tools are not available, try to use the _winreg module by Marc-André Lemburg · 17 years ago
  17. fa6a8b3 Gave Jerry Seutter svn access for general Python development. by Brett Cannon · 17 years ago
  18. 402b270 #2383: remove obsolete XXX comment in stat.py. by Georg Brandl · 17 years ago
  19. 6af3db8 Attempt to fix the Solaris Sparc 10 buildbot. It was failing with an invalid by Gregory P. Smith · 17 years ago
  20. 45ea86c Issue 2188: Documentation hint about disabling proxy detection. by Sean Reifscheider · 17 years ago
  21. 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
  22. 68fa8e6 Forgot to add NEWS item about smtplib SSL readline hang fix. by Sean Reifscheider · 17 years ago
  23. ac2ed1e Issue #2143: Fix embedded readline() hang on SSL socket EOF. by Sean Reifscheider · 17 years ago
  24. a5cfcad Prevent ioctl op codes from being sign extended from int to unsigned long by Gregory P. Smith · 17 years ago
  25. 48581c5 Make sure that the warnings filter is not reset or changed beyond the current by Brett Cannon · 17 years ago
  26. 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
  27. c71d2a9 Remove unnecessary traceback save/restore pair. by Raymond Hettinger · 17 years ago
  28. 27f60a6 Comment out tcltk/tcltk64 removal. by Trent Nelson · 17 years ago
  29. f15cde3 Improve the error message when the CRCs don't match. by Gregory P. Smith · 17 years ago
  30. 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
  31. 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
  32. 0ccfe5f Remove itertools warnings I had added before the 2-to-3 handled the migration. by Raymond Hettinger · 17 years ago
  33. 10dca6e The filter() function does support a None argument in Py3.0. by Raymond Hettinger · 17 years ago
  34. 0538786 Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. by Raymond Hettinger · 17 years ago
  35. 977eb02 Use sys.py3kwarning instead of trying to trigger a Py3k-related warning. by Brett Cannon · 17 years ago
  36. 7919d98 test_nis would fail if test.test_support.verbose was true but NIS was not set by Brett Cannon · 17 years ago
  37. 12b580b Checkout sqlite-source when it is not there. by Thomas Heller · 17 years ago
  38. 8ff4963 Trivial typo. by Eric Smith · 17 years ago
  39. e504445 Use test.test_support.captured_stdout instead of a custom contextmanager. by Eric Smith · 17 years ago
  40. 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
  41. 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
  42. 97e863e Another one. by Georg Brandl · 17 years ago
  43. 482d752 Remove footnote from versionchanged as it upsets LaTeX. by Georg Brandl · 17 years ago
  44. 2b1ec17 Remove extraneous apostrophe and semi-colon from AdditionalIncludeDirectories. by Trent Nelson · 17 years ago
  45. 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
  46. 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
  47. 16b2e6b Import relimport using a relative import. by Martin v. Löwis · 17 years ago
  48. ab41b37 Merged revisions 61598-61599,61601 via svnmerge from by Martin v. Löwis · 17 years ago
  49. aad2b61 Initialized merge tracking via "svnmerge" with revisions "1-61595" from by Martin v. Löwis · 17 years ago
  50. 5e37bae Import lib2to3. by Martin v. Löwis · 17 years ago
  51. a4d7789 Issue #2400: Allow relative imports to "import *". by Martin v. Löwis · 17 years ago
  52. de48d84 Fix compiler warning. by Raymond Hettinger · 17 years ago
  53. bf02e3b Fix the struct module DeprecationWarnings that zipfile was triggering by by Gregory P. Smith · 17 years ago
  54. 14cae96 Another test for __future__ print_function. by Eric Smith · 17 years ago
  55. 2724ab9 Added zip, map, filter to future_bultins (#2171) by David Wolever · 17 years ago
  56. fbe7c55 Added my name to ACKS by David Wolever · 17 years ago
  57. 5d5c63f Fixed compiler module so __future__ print_function is compilable. by Eric Smith · 17 years ago
  58. b89a096 Use zlib's crc32 routine instead of binascii when available. zlib's is faster by Gregory P. Smith · 17 years ago
  59. bde4007 Mention that crc32 and adler32 are available in a different module (zlib). by Gregory P. Smith · 17 years ago
  60. 0279f43 Add Jeff Rush by Andrew M. Kuchling · 17 years ago
  61. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
  62. 6c0ff8a Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). by Raymond Hettinger · 17 years ago
  63. 9a47e62 Speed-up isinstance() for one easy case. by Raymond Hettinger · 17 years ago
  64. c856fa8 Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing. by Gregory P. Smith · 17 years ago
  65. 6a644f9 Add py3k warnings for code and method inequality comparisons. This should resolve issue 2373. The codeobject.c and methodobject.c changes are both just backports of the Python 3 code. by Steven Bethard · 17 years ago
  66. e8e22cf Have regrtest skip test_py3kwarn when the -3 flag is missing. by Steven Bethard · 17 years ago
  67. 8e6ec2f Added a warning when -3 is enabled and None is passed to filter as the first argument. by David Wolever · 17 years ago
  68. 30f3680 Ignore BIG5HKSCS-2004.TXT which is downloaded as part of a test. by Brett Cannon · 17 years ago
  69. 37f3f43 news entry for the chown fix by Gregory P. Smith · 17 years ago
  70. 0c1ef47 Import the test properly. This is especially important for py3k. by Neal Norwitz · 17 years ago
  71. a7a3e28 Fix test_atexit so that it still passes when -3 is supplied. (It was catching the warning messages on stdio from using the reload() function.) by Steven Bethard · 17 years ago
  72. f48da8f Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) as by Gregory P. Smith · 17 years ago
  73. 8906575 _have_soundcard() is a bad check for winsound.Beep, since you can have a soundcard but have the beep driver disabled. This revision basically disables the beep tests by wrapping them in a try/except. The Right Way To Do It is to come up with a _have_enabled_beep_driver() and use that. by Steven Bethard · 17 years ago
  74. b865f05 cell_compare needs to return -2 instead of NULL. by Steven Bethard · 17 years ago
  75. 5fe5cf6 Get regrtest working when re-running tests by Neal Norwitz · 17 years ago
  76. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 17 years ago
  77. a8b09fd Add Tools/scripts/patchcheck.py. Invoked from ``make check``, the script does by Brett Cannon · 17 years ago
  78. 493894c Issue 1577: shutil.move() where destination is a directory was doing a by Sean Reifscheider · 17 years ago
  79. c81d3dc Cast the arguments to PyString_AsStringAndSize() to silence compiler warnings by Brett Cannon · 17 years ago
  80. ed427e7 Use test_support.unlink instead of os.unlink in tearDown(). (Seems to fix an occasional failure in Windows Vista.) by Steven Bethard · 17 years ago
  81. f084e04 Fix test_errno to only check for error numbers that are defined by Standard C. by Brett Cannon · 17 years ago
  82. 10ed0f5 Remove all traces of HAVE_STRERROR. by Brett Cannon · 17 years ago
  83. 50a24d8 Include <alloca.h> on Solaris, see issue #1506. by Thomas Heller · 17 years ago
  84. 66e2663 Note that the stderr output of the test is intentional. by Martin v. Löwis · 17 years ago
  85. afb416b Add WSA errors. by Martin v. Löwis · 17 years ago
  86. 637f239 Add more Linux error codes. by Martin v. Löwis · 17 years ago
  87. d43ca3b norwitz-amd64 (gentoo) has EREMOTEIO. by Martin v. Löwis · 17 years ago
  88. 496ad27 The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either: by Trent Nelson · 17 years ago
  89. 3ce7675 Issue 2286: bump up the stack size of the 64-bit debug python_d.exe to 2100000. The default value of 200000 causes a stack overflow at 1965 iterations of r_object() in marshal.c, 35 iterations before the 2000 limit enforced by MAX_MARSHAL_STACK_DEPTH. by Trent Nelson · 17 years ago
  90. d1befd7 Add some info to the failure messages by Neal Norwitz · 17 years ago
  91. 36dbcb9 Add a -S/--slow flag to regrtest to have it print the 10 slowest tests with by Jeffrey Yasskin · 17 years ago
  92. 08811dd Improve the error message for a test that failed on the S-390 Debian buildbot. by Brett Cannon · 17 years ago
  93. 819f139 Try increasing the timeout to reduce the flakiness of this test. by Neal Norwitz · 17 years ago
  94. ed41465 Speed up test_dict by about 10x by only checking selected dict literal sizes, by Jeffrey Yasskin · 17 years ago
  95. a145853 Speed test_thread up from 51.328s to 0.081s by reducing its sleep times. We by Jeffrey Yasskin · 17 years ago
  96. b1d3d96 Issue 2332: add new attribute names for instance method objects by Neal Norwitz · 17 years ago
  97. 3781aef Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will. by Travis E. Oliphant · 17 years ago
  98. 6d91be3 - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on by Guido van Rossum · 17 years ago
  99. 0bfc896 Block the "socket.ssl() is deprecated" warning from test_socket_ssl. by Jeffrey Yasskin · 17 years ago
  100. 504153d Issue #2341: Add a Py3k warning when raising an exception that doesn't by Guido van Rossum · 17 years ago