1. 4a7ff1d add a test for #7853; the exception must be normalized for with by Benjamin Peterson · 16 years ago
  2. f7610b2 Added unit test for cfg:// resolution. by Vinay Sajip · 16 years ago
  3. 98ce620 Removed spurious print statement. by Vinay Sajip · 16 years ago
  4. 28c382f Logging: Implemented PEP 391. by Vinay Sajip · 16 years ago
  5. dc84f8f Fix a typo in a docstring introduced in r77956. by Brett Cannon · 16 years ago
  6. 18e4db5 Update a docstring to suggest using importlib.import_module instead of calling __import__ directly. by Brett Cannon · 16 years ago
  7. c68e9f0 Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942). by Mark Dickinson · 16 years ago
  8. b8c7b01 leaving global attributes for backward compat by Tarek Ziadé · 16 years ago
  9. dde5b94 #7092: Silence more py3k warnings. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
  10. bece7f2 fixed a typo on distutils.sysconfig. thanks arfever by Tarek Ziadé · 16 years ago
  11. e81b028 sysconfig.get_scheme_names now returns a sorted tuple by Tarek Ziadé · 16 years ago
  12. cc11817 module reorganization + missing doctests by Tarek Ziadé · 16 years ago
  13. 1f517e1 #7092: Silence py3k warnings in test_exceptions and test_pep352. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
  14. 8d3f130 Fix idioms and a couple of py3k warnings. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
  15. 0ac4d4c Silence a couple of -3 warnings by Ezio Melotti · 16 years ago
  16. 5d62cfe #7092: silence py3k warnings for bsddb. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
  17. 1595f9f Merged revisions 77855-77856,77870 via svnmerge from by Martin v. Löwis · 16 years ago
  18. b4b0a29 Issue #7819: Check sys.call_tracing() arguments types. by Victor Stinner · 16 years ago
  19. f3fa074 - Issue #6939: Fix file I/O objects in the `io` module to keep the original by Antoine Pitrou · 16 years ago
  20. 7aedb3b fix windows buildbot by Benjamin Peterson · 16 years ago
  21. 48a3c4e - Fix typo in os.execvp docstring. by Matthias Klose · 16 years ago
  22. ef49096 #7092: silence more -3 and -Wd warnings by Ezio Melotti · 16 years ago
  23. a8e34b7 Merged revisions 77419,77435 via svnmerge from by Martin v. Löwis · 16 years ago
  24. a2d4653 #7092: silence py3k warnings for deprecated modules by Ezio Melotti · 16 years ago
  25. 05b4171 Fix typo in assertSequenceEqual docstring. by R. David Murray · 16 years ago
  26. 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 16 years ago
  27. b5d7400 Change error report when the object passed to suite.addTest is not by R. David Murray · 16 years ago
  28. 11fab6c avoid a py3k warning from __hash__ by Benjamin Peterson · 16 years ago
  29. 4611b05 avoid to use zlib when the compress type is not ZIP_DEFLATED by Ezio Melotti · 16 years ago
  30. 94c33eb Issue #7610: Reworked implementation of the internal by Antoine Pitrou · 16 years ago
  31. 654ade3 Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool by Jesse Noller · 16 years ago
  32. 2deb5c7 raise a clear TypeError when trying to register a non-class by Benjamin Peterson · 16 years ago
  33. 17527be for UserDict to be compatible with abcs, it must subclass object by Benjamin Peterson · 16 years ago
  34. 74c2577 Added named (but not numbered) attributes to sys.getwindowsversion() test. by Eric Smith · 16 years ago
  35. 59529e1 Switch to test_support.get_attribute. by Eric Smith · 16 years ago
  36. 514e77e Removed unneeded test. by Eric Smith · 16 years ago
  37. ee931b7 Issue #7766: Change sys.getwindowsversion() return value to a named tuple and add the additional members returned in an OSVERSIONINFOEX structure. The new members are service_pack_major, service_pack_minor, suite_mask, and product_type. by Eric Smith · 16 years ago
  38. 92e68af added local get_platform/set_platform APIs in distutils.sysconfig by Tarek Ziadé · 16 years ago
  39. 0276c7a reintroduced the names in Distutils for APIs that were relocated by Tarek Ziadé · 16 years ago
  40. b28e5d7 fixed bdist_msi imports and added a test module for distutils.command.bdist_msi by Tarek Ziadé · 16 years ago
  41. ffd8496 #7092: fix DeprecationWarnings for json when the tests are run with -3 -Wd. by Ezio Melotti · 16 years ago
  42. ef97caf switched the call order so this call works without suffering from issue #7774 by Tarek Ziadé · 16 years ago
  43. 28e369a compare types with is not == by Benjamin Peterson · 16 years ago
  44. a617e20 mention from_float() in error message by Benjamin Peterson · 16 years ago
  45. a43f34c fix an UnboundLocalError when the release file is empty #7773 by Benjamin Peterson · 16 years ago
  46. aab2401 #7269: fix failures in test_bsddb3. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
  47. 469a05f remove archaic functions from test_support by Ezio Melotti · 16 years ago
  48. b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 16 years ago
  49. f14c7fc Fixed #7748: now upload and register commands don't need to force the encoding anymore : DistributionMetada returns utf8 strings by Tarek Ziadé · 16 years ago
  50. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  51. c64614e fixed the 64bits tests for get_platform() - mac osx by Tarek Ziadé · 16 years ago
  52. 0e4e732 Increased the overflow value on test_dealloc to make sure that it is big enough even for wide builds. by Ezio Melotti · 16 years ago
  53. 5633a80 taking sysconfig out of distutils by Tarek Ziadé · 16 years ago
  54. f8a9402 This should fix the failure introduced in r77680. The error message is now different and it caused the test to fail. The failing test is not present in 2.5 so it is failing only on 2.6 and newer versions. by Ezio Melotti · 16 years ago
  55. a3112d1 Use // for floor division. by Mark Dickinson · 16 years ago
  56. 5a63348 Add two more test_strtod test values. by Mark Dickinson · 16 years ago
  57. 294d6ac Additional testcases for strtod. by Mark Dickinson · 16 years ago
  58. 4141d65 Various dtoa.c cleanups. 1. Despagghetify _Py_dg_strtod parsing code by Mark Dickinson · 16 years ago
  59. 8926108 Revert debugprint code in r77607. by Gregory P. Smith · 16 years ago
  60. 8f6f426 Add a pydebug mode only debug print to help debug the errors in by Gregory P. Smith · 16 years ago
  61. 9179dab data descriptors do not override the class dictionary if __get__ is not defined by Benjamin Peterson · 16 years ago
  62. b01f5e6 #7730: remove spaces after functions names by Ezio Melotti · 16 years ago
  63. e80a6a4 Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) by Antoine Pitrou · 16 years ago
  64. ab6ee7a Increase number of strtod tests slightly, to make it more likely that a memory leak is detected. by Mark Dickinson · 16 years ago
  65. d87f22c Add better error reporting for MemoryErrors caused by str->float conversions. by Mark Dickinson · 16 years ago
  66. 811ff82 Issue #7632: Fix one more case of incorrect rounding for str -> float by Mark Dickinson · 16 years ago
  67. db983a7 Followup to #7703: a2b_hqx() didn't follow the new buffer API (neither in trunk by Antoine Pitrou · 16 years ago
  68. c755dba Fix issue number in comment. by R. David Murray · 16 years ago
  69. 476279f Issue #7632: Fix a serious wrong output bug for string -> float conversion. by Mark Dickinson · 16 years ago
  70. ed44dfa Issue #1670765: Prevent email.generator.Generator from re-wrapping by R. David Murray · 16 years ago
  71. 667dc19 try to fix for windows by Benjamin Peterson · 16 years ago
  72. c391ad0 Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a by Antoine Pitrou · 16 years ago
  73. 3ffa43d The silencing of DeprecationWarning was not taking -3 into consideration. Since by Brett Cannon · 16 years ago
  74. efdddd3 Issue #3299: Fix possible crash in the _sre module when given bad by Antoine Pitrou · 16 years ago
  75. fd3a60d Issue #7703: Add support for the new buffer API to functions of the by Antoine Pitrou · 16 years ago
  76. 647ed91 Issue #7632: add tests for bugs fixed so far. by Mark Dickinson · 16 years ago
  77. 7a1b435 use more robust quoting by Benjamin Peterson · 16 years ago
  78. 5f76d13 Issue #7625: Add more tests that bytearray methods return new objects, by Antoine Pitrou · 16 years ago
  79. 5a9112c Issue #2846: Add support for gzip.GzipFile reading zero-padded files. by Antoine Pitrou · 16 years ago
  80. 5ff4f27 Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results. by Mark Dickinson · 16 years ago
  81. 8efef5c Issue #7632: Fix a problem with _Py_dg_strtod that could lead to by Mark Dickinson · 16 years ago
  82. efa45f3 Issue #7654: enable additional bytes/bytearray tests. Patch by Florent Xicluna. by Antoine Pitrou · 16 years ago
  83. b5689de #5827: make sure that normpath preserves unicode by Ezio Melotti · 16 years ago
  84. 58a96ef Fixed repr of dictionary views. by Alexandre Vassalotti · 16 years ago
  85. ae7731a module cleanup by Tarek Ziadé · 16 years ago
  86. 69eb516 Issue #1967: Backport dictionary views. by Alexandre Vassalotti · 16 years ago
  87. dc0f487 Fixed #5372: .o files are now always rebuilt because file age test don't work in some case by Tarek Ziadé · 16 years ago
  88. b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 16 years ago
  89. e822ab0 fix test_popen when the path to python has spaces #7671 by Benjamin Peterson · 16 years ago
  90. 2e3da14 Fixed issue7648 - test_urllib2 fails on Windows if not run from C: by Senthil Kumaran · 16 years ago
  91. 9d87323 Update root certificate to CAcert. by Martin v. Löwis · 16 years ago
  92. 6fdd3dc DeprecationWarning is now silent by default. by Brett Cannon · 16 years ago
  93. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 16 years ago
  94. e365613 Issue #7532: Add additional slicing test cases for new- and old-style by Mark Dickinson · 16 years ago
  95. aa7e51f bump version to 2.7a2 by Benjamin Peterson · 16 years ago
  96. c25417f Fixed #7617: all flavors of gcc should be recognized now by Tarek Ziadé · 16 years ago
  97. 5b77d6d Remove obsolete warning filters in regrtest.py (from issue #7092 -- patch by by Antoine Pitrou · 16 years ago
  98. 7a2ee0b Fix for Issue7026. For the Error - RuntimeError: dictionary changed size during iteration by Senthil Kumaran · 16 years ago
  99. 8015725 Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles by Antoine Pitrou · 16 years ago
  100. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago