1. 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 · 16 years ago
  2. 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 · 16 years ago
  3. 16b2e6b Import relimport using a relative import. by Martin v. Löwis · 16 years ago
  4. ab41b37 Merged revisions 61598-61599,61601 via svnmerge from by Martin v. Löwis · 16 years ago
  5. aad2b61 Initialized merge tracking via "svnmerge" with revisions "1-61595" from by Martin v. Löwis · 16 years ago
  6. 5e37bae Import lib2to3. by Martin v. Löwis · 16 years ago
  7. a4d7789 Issue #2400: Allow relative imports to "import *". by Martin v. Löwis · 16 years ago
  8. de48d84 Fix compiler warning. by Raymond Hettinger · 16 years ago
  9. bf02e3b Fix the struct module DeprecationWarnings that zipfile was triggering by by Gregory P. Smith · 16 years ago
  10. 14cae96 Another test for __future__ print_function. by Eric Smith · 16 years ago
  11. 2724ab9 Added zip, map, filter to future_bultins (#2171) by David Wolever · 16 years ago
  12. fbe7c55 Added my name to ACKS by David Wolever · 16 years ago
  13. 5d5c63f Fixed compiler module so __future__ print_function is compilable. by Eric Smith · 16 years ago
  14. b89a096 Use zlib's crc32 routine instead of binascii when available. zlib's is faster by Gregory P. Smith · 16 years ago
  15. bde4007 Mention that crc32 and adler32 are available in a different module (zlib). by Gregory P. Smith · 16 years ago
  16. 0279f43 Add Jeff Rush by Andrew M. Kuchling · 16 years ago
  17. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 16 years ago
  18. 6c0ff8a Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). by Raymond Hettinger · 16 years ago
  19. 9a47e62 Speed-up isinstance() for one easy case. by Raymond Hettinger · 16 years ago
  20. c856fa8 Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing. by Gregory P. Smith · 16 years ago
  21. 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 · 16 years ago
  22. e8e22cf Have regrtest skip test_py3kwarn when the -3 flag is missing. by Steven Bethard · 16 years ago
  23. 8e6ec2f Added a warning when -3 is enabled and None is passed to filter as the first argument. by David Wolever · 16 years ago
  24. 30f3680 Ignore BIG5HKSCS-2004.TXT which is downloaded as part of a test. by Brett Cannon · 16 years ago
  25. 37f3f43 news entry for the chown fix by Gregory P. Smith · 16 years ago
  26. 0c1ef47 Import the test properly. This is especially important for py3k. by Neal Norwitz · 16 years ago
  27. 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 · 16 years ago
  28. f48da8f Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) as by Gregory P. Smith · 16 years ago
  29. 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 · 16 years ago
  30. b865f05 cell_compare needs to return -2 instead of NULL. by Steven Bethard · 16 years ago
  31. 5fe5cf6 Get regrtest working when re-running tests by Neal Norwitz · 16 years ago
  32. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 16 years ago
  33. a8b09fd Add Tools/scripts/patchcheck.py. Invoked from ``make check``, the script does by Brett Cannon · 16 years ago
  34. 493894c Issue 1577: shutil.move() where destination is a directory was doing a by Sean Reifscheider · 16 years ago
  35. c81d3dc Cast the arguments to PyString_AsStringAndSize() to silence compiler warnings by Brett Cannon · 16 years ago
  36. ed427e7 Use test_support.unlink instead of os.unlink in tearDown(). (Seems to fix an occasional failure in Windows Vista.) by Steven Bethard · 16 years ago
  37. f084e04 Fix test_errno to only check for error numbers that are defined by Standard C. by Brett Cannon · 16 years ago
  38. 10ed0f5 Remove all traces of HAVE_STRERROR. by Brett Cannon · 16 years ago
  39. 50a24d8 Include <alloca.h> on Solaris, see issue #1506. by Thomas Heller · 16 years ago
  40. 66e2663 Note that the stderr output of the test is intentional. by Martin v. Löwis · 16 years ago
  41. afb416b Add WSA errors. by Martin v. Löwis · 16 years ago
  42. 637f239 Add more Linux error codes. by Martin v. Löwis · 16 years ago
  43. d43ca3b norwitz-amd64 (gentoo) has EREMOTEIO. by Martin v. Löwis · 16 years ago
  44. 496ad27 The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either: by Trent Nelson · 16 years ago
  45. 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 · 16 years ago
  46. d1befd7 Add some info to the failure messages by Neal Norwitz · 16 years ago
  47. 36dbcb9 Add a -S/--slow flag to regrtest to have it print the 10 slowest tests with by Jeffrey Yasskin · 16 years ago
  48. 08811dd Improve the error message for a test that failed on the S-390 Debian buildbot. by Brett Cannon · 16 years ago
  49. 819f139 Try increasing the timeout to reduce the flakiness of this test. by Neal Norwitz · 16 years ago
  50. ed41465 Speed up test_dict by about 10x by only checking selected dict literal sizes, by Jeffrey Yasskin · 16 years ago
  51. a145853 Speed test_thread up from 51.328s to 0.081s by reducing its sleep times. We by Jeffrey Yasskin · 16 years ago
  52. b1d3d96 Issue 2332: add new attribute names for instance method objects by Neal Norwitz · 16 years ago
  53. 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 · 16 years ago
  54. 6d91be3 - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on by Guido van Rossum · 16 years ago
  55. 0bfc896 Block the "socket.ssl() is deprecated" warning from test_socket_ssl. by Jeffrey Yasskin · 16 years ago
  56. 504153d Issue #2341: Add a Py3k warning when raising an exception that doesn't by Guido van Rossum · 16 years ago
  57. a5573b3 The output directory for tests that compare against stdout is now gone! by Brett Cannon · 16 years ago
  58. aa5778d Remove our implementation of memmove() and strerror(); both are in the C89 by Brett Cannon · 16 years ago
  59. b7ec8e5 test_errno was a no-op test; now it actually tests things and uses unittest. by Brett Cannon · 16 years ago
  60. 20bda58 Clean up the Py3k warnings for non-BaseException-subclasses a bit. We by Guido van Rossum · 16 years ago
  61. 04edb52 - Issue #2371: Add a Py3k warning when catching an exception that by Guido van Rossum · 16 years ago
  62. 0bb7950 Move test_extcall to doctest. by Brett Cannon · 16 years ago
  63. ba17cfc Convert test_dummy_threading and test_dbm to unittest. by Brett Cannon · 16 years ago
  64. 5de250e Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. by Jeffrey Yasskin · 16 years ago
  65. 6eeaddc Convert test_strftime, test_getargs, and test_pep247 to use unittest. by Brett Cannon · 16 years ago
  66. 887290d Fix the IOError message text when opening a file with an invalid filename. by Gregory P. Smith · 16 years ago
  67. a7d57cd Add David Wolever. by Martin v. Löwis · 16 years ago
  68. 419fd49 Issue 2321: reduce memory usage (increase the memory that is returned by Neal Norwitz · 16 years ago
  69. 0aed07a Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS. by Eric Smith · 16 years ago
  70. 6f778cf Document unicode.isnumeric() and unicode.isdecimal() (issue2326) by Steven Bethard · 16 years ago
  71. f13572d Use a buffer large enough to ensure we don't overrun, even if the value by Neal Norwitz · 16 years ago
  72. f48f9d3 Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms by Gregory P. Smith · 16 years ago
  73. 33451d8 Add necessary headers to back-port new buffer protocol to Python 2.6 by Travis E. Oliphant · 16 years ago
  74. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 16 years ago
  75. 7cfbf0c Add Trent Nelson. by Martin v. Löwis · 16 years ago
  76. b9e15f7 Make isinstance(OldstyleClass, NewstyleClass) return False instead of raising by Jeffrey Yasskin · 16 years ago
  77. 1b4e45b Allow Gnu gcc's to build python on OSX by removing -Wno-long-double, by Jeffrey Yasskin · 16 years ago
  78. 5c35a9d Reformated lines > 79 chars. Deleted unused macro ISXDIGIT. by Eric Smith · 16 years ago
  79. 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 16 years ago
  80. 43da35d Added a footnote to each pointing out that for XML output if an encoding by Mark Summerfield · 16 years ago
  81. 91f0ee4 Clarified documentation on use of shutdown(). by Vinay Sajip · 16 years ago
  82. 87b0551 #2299: typos in newtypes.rst. by Georg Brandl · 16 years ago
  83. a6cfeb4 Update docs to reflect removal of Exact/Inexact by Raymond Hettinger · 16 years ago
  84. 5becac5 Handle memory allocation failure. Found by Adam Olsen by Neal Norwitz · 16 years ago
  85. 400aeda Add a warning for code like: assert (0, 'message') by Neal Norwitz · 16 years ago
  86. cd6bfab Zap one more use of Exact/Inexact. by Raymond Hettinger · 16 years ago
  87. 6b46762 Removed Exact/Inexact after discussion with Yasskin. by Raymond Hettinger · 16 years ago
  88. 32ed8c2 . by Skip Montanaro · 16 years ago
  89. fc070d2 add %f format to datetime - issue 1158 by Skip Montanaro · 16 years ago
  90. 75e5168 note that fork and forkpty raise OSError on failure by Skip Montanaro · 16 years ago
  91. 0267781 Fix lots of broken links in the docs, found by Sphinx' external link checker. by Georg Brandl · 16 years ago
  92. bd77681 Remove obsolete paragraph. #2288. by Georg Brandl · 16 years ago
  93. f2b333a Run debug version, cd to PCbuild. by Martin v. Löwis · 16 years ago
  94. 41e22ff Remove unneeded initializer. by Thomas Heller · 16 years ago
  95. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 16 years ago
  96. 6119540 Remove a bad test. by Brett Cannon · 16 years ago
  97. 7bae443 Use -x64 flag. by Martin v. Löwis · 16 years ago
  98. bf7b0b7 Patch #2284: add -x64 option to rt.bat. by Martin v. Löwis · 16 years ago
  99. 10d7603 Leave heapreplace() unchanged. by Raymond Hettinger · 16 years ago
  100. 1f5182b Convert test_fcntl to unittest. by Brett Cannon · 16 years ago