1. aef82d3 IDLE was relying on implicit relative imports which have gone away in by Brett Cannon · 12 years ago
  2. 44590e4 Add some comments. by Brett Cannon · 12 years ago
  3. 2217c46 merge with the tip by Brian Curtin · 12 years ago
  4. e6b299f Fix Windows build by Brian Curtin · 12 years ago
  5. afbdc13 Fix an import race condition. by Brett Cannon · 12 years ago
  6. 73def61 Try to fix a sporadic test failure from what is probably a caching race condition. by Brett Cannon · 12 years ago
  7. 740fce0 Undo a C99 idiom. by Brett Cannon · 12 years ago
  8. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  9. d2cbd90 merge with 3.2 by Sandro Tosi · 12 years ago
  10. 1ee1719 fix typo; thanks to Jérôme Mainka from docs@ by Sandro Tosi · 12 years ago
  11. 9c9af9d Merge highlight and spacing fixes in json example with 3.2. by Ezio Melotti · 12 years ago
  12. 84e59aa Fix highlight and spacing in json example. by Ezio Melotti · 12 years ago
  13. 584fbbb #14535: merge with 3.2. by Ezio Melotti · 12 years ago
  14. f86b28e #14535: fix code highlight in multiprocessing examples. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 12 years ago
  15. 2c4efa8 Merge #14399: corrected news item by R David Murray · 12 years ago
  16. 650dfaf #14399: corrected news item by R David Murray · 12 years ago
  17. 780b66b merge 3.2 by Benjamin Peterson · 12 years ago
  18. 3bf0175 move outside WITH_THREAD conditional by Benjamin Peterson · 12 years ago
  19. b8d0169 Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an int by Victor Stinner · 12 years ago
  20. 0682a0c Minor docstring / docs corrections for unittest.mock by Michael Foord · 12 years ago
  21. 656319e Make unittest.mock.create_autospec resilient against AttributeError on original object by Michael Foord · 12 years ago
  22. 899ee61 merge 3.2 by Benjamin Peterson · 12 years ago
  23. 43162b8 take linkage def outside of WITH_THREAD conditional (closes #14569) by Benjamin Peterson · 12 years ago
  24. c287062 unittest.mock.PropertyMock return value and attributes are now standard MagicMocks by Michael Foord · 12 years ago
  25. 633b32a put PyImportErrorObject with its brothers by Benjamin Peterson · 12 years ago
  26. 15af26f Merge by Brett Cannon · 12 years ago
  27. a29629f NEWS entry about importlib and ImportError's new attributes. by Brett Cannon · 12 years ago
  28. bbb6680 Have importlib take advantage of ImportError's new 'name' and 'path' attributes. by Brett Cannon · 12 years ago
  29. b413874 merge heads by Amaury Forgeot d'Arc · 12 years ago
  30. 504a83f merge heads by Amaury Forgeot d'Arc · 12 years ago
  31. 18d508f Merge heads by Amaury Forgeot d'Arc · 12 years ago
  32. 79ec55e Issue #1559549: Add 'name' and 'path' attributes to ImportError. by Brett Cannon · 12 years ago
  33. 8963943 hg merge 3.2 by Amaury Forgeot d'Arc · 12 years ago
  34. a9d33a2 Issue14559: Fix build files old Microft compilers. by Amaury Forgeot d'Arc · 12 years ago
  35. f50b38a Merge #14399: zipfile now correctly handles comments added to empty zipfiles. by R David Murray · 12 years ago
  36. 51804e9 #14399: zipfile now correctly handles comments added to empty zipfiles. by R David Murray · 12 years ago
  37. 6125e23 Doc: sort time.CLOCK_xxx constants by Victor Stinner · 12 years ago
  38. 84ba495 Null-merge 3.2 branch. by Georg Brandl · 12 years ago
  39. d46d69c 3.2 sidebar: link to 3.3, not 3.1 by Georg Brandl · 12 years ago
  40. 515ea9b Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. by Charles-François Natali · 12 years ago
  41. 5739e10 Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. by Charles-François Natali · 12 years ago
  42. 80a133b code improvement. 'as cm' not required when not used. Review comment by Georg Brandl by Senthil Kumaran · 12 years ago
  43. df7ac06 Merge doc fixes #14553 and #14552. by R David Murray · 12 years ago
  44. e7bade5 #14553: fix word order. by R David Murray · 12 years ago
  45. 644cabe #14552: remove redundant wording in 'test' docs. by R David Murray · 12 years ago
  46. d268109 merge 3.2 (null) by Benjamin Peterson · 12 years ago
  47. 118ef7c merge 3.1 (null) by Benjamin Peterson · 12 years ago
  48. 2fd0b1a after 3.1.5 by Benjamin Peterson · 12 years ago
  49. ea16980 #14508: make gprof2html script runnable under python3 by R David Murray · 12 years ago
  50. 776c0df #14508: make gprof2html script runnable under python3 by R David Murray · 12 years ago
  51. 690598a merge to default - Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn Linderman. Refactor code and tests by Senthil Kumaran · 12 years ago
  52. d70846b 3.2 - Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn Linderman. Refactor code and tests by Senthil Kumaran · 12 years ago
  53. 1c94ff8 Improve the threading.Condition docs. by Antoine Pitrou · 12 years ago
  54. f6cd9b2 Improve the threading.Condition docs. by Antoine Pitrou · 12 years ago
  55. b43ef77 #14545: merge 3.2 by Georg Brandl · 12 years ago
  56. 2a4864b Merge 3.2 by Georg Brandl · 12 years ago
  57. 2c58075 Closes #14545: make clearer what was added. by Georg Brandl · 12 years ago
  58. 08bd4aa use assertWarns instead of check_warnings - Issue14341 by Senthil Kumaran · 12 years ago
  59. a51497a Merge 3.2.3 release clone. by Georg Brandl · 12 years ago
  60. 507776e Post-release update. by Georg Brandl · 12 years ago
  61. 9fe92d1 Make the trace module ignore modules whose names start with "<" and by Brett Cannon · 12 years ago
  62. ec766a6 1) Remove claim of an input invariant that is only true for static mpd_t. by Stefan Krah · 12 years ago
  63. 7b544ca Fix stale comment. by Stefan Krah · 12 years ago
  64. 61d85ba Merge by Antoine Pitrou · 12 years ago
  65. b96a354 Small improvements to the threading docs: better publicize support for the with statement. by Antoine Pitrou · 12 years ago
  66. 2c9f104 Fix some markup in the threading docs. by Antoine Pitrou · 12 years ago
  67. 126aef7 Issue #8799: Fix and improve the threading.Condition documentation. by Antoine Pitrou · 12 years ago
  68. 88b957a merge heads by Senthil Kumaran · 12 years ago
  69. 1cbf78a merge heads by Senthil Kumaran · 12 years ago
  70. d05853d merge - fix the incorrect changes made for PATH_INFO value - Issue10484 by Senthil Kumaran · 12 years ago
  71. dbb369d 3.2- fix the incorrect changes made for PATH_INFO value - Issue10484 by Senthil Kumaran · 12 years ago
  72. 8bf2aea Merged updates to logging reference and HOWTO from 3.2. by Vinay Sajip · 12 years ago
  73. 074faff Updated logging reference and HOWTO. by Vinay Sajip · 12 years ago
  74. eba2428 Issue #14541: Merged addition of test/sndhdrdata to Makefile.pre.in from 3.2. by Vinay Sajip · 12 years ago
  75. 935b629 Issue #14541: Added test/sndhdrdata to Makefile.pre.in for installation. by Vinay Sajip · 12 years ago
  76. 6b2e4cb Added tag v3.2.3 for changeset 3d0686d90f55 by Georg Brandl · 12 years ago
  77. 81c393b Merge. by Georg Brandl · 12 years ago
  78. 4403601 Bump to 3.2.3 final. by Georg Brandl · 12 years ago
  79. 470f33f News entry for f91ecbc8bafc. by Georg Brandl · 12 years ago
  80. cc74b6a Issue #14478: Cache the hash of a Decimal in the C version. by Stefan Krah · 12 years ago
  81. 9deb188 merge - minor .rst fix by Senthil Kumaran · 12 years ago
  82. cc49790 minor .rst fix by Senthil Kumaran · 12 years ago
  83. f93fc04 Merge. by Stefan Krah · 12 years ago
  84. e37f8b2 Issue #14520: Add __sizeof__() method to the Decimal object. by Stefan Krah · 12 years ago
  85. 4a1e7cb merge 3.2 by Benjamin Peterson · 12 years ago
  86. d47f0d6 merge heads by Benjamin Peterson · 12 years ago
  87. 77ec326 merge heads by Benjamin Peterson · 12 years ago
  88. 64ed576 merge 3.2 (#14509) by Benjamin Peterson · 12 years ago
  89. ca819c3 merge 3.1 (#14509) by Benjamin Peterson · 12 years ago
  90. f6622c8 fix build without Py_DEBUG and DNDEBUG (closes #14509) by Benjamin Peterson · 12 years ago
  91. f69aef7 Resize the coefficient to MPD_MINALLOC also if the requested size is below by Stefan Krah · 12 years ago
  92. da29f8c Merged comment correction from 3.2. by Vinay Sajip · 12 years ago
  93. 838e638 Corrected comment in cookbook example script. by Vinay Sajip · 12 years ago
  94. 0c0914e _decimal is now 100x faster than the Python version in the pi benchmark. by Stefan Krah · 12 years ago
  95. dd159ce Speed up _decimal by 30-40% for numerical workloads by improving the cache by Stefan Krah · 12 years ago
  96. 94ef3e4 Use the MPD() accessor macro. by Stefan Krah · 12 years ago
  97. b547d39 Update description of benchmarks and mention the benchmarks repo by Antoine Pitrou · 12 years ago
  98. d6aa5b3 Fix whitespace by Antoine Pitrou · 12 years ago
  99. 1584ae3 Issue #13165: stringbench is now available in the Tools/stringbench folder. by Antoine Pitrou · 12 years ago
  100. 75d9aca Rename test_ file that is really a support file to remove test_ prefix. by R David Murray · 12 years ago