1. be0708f Closes #19831: Stop tracemalloc later at Python shutdown to be able to use by Victor Stinner · 11 years ago
  2. 54532c9 Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  3. 361e30c Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  4. 1c27e3c Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  5. 1eda9e7 Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  6. 2ccf8e9 Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  7. 65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. by Alexandre Vassalotti · 11 years ago
  8. 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  9. 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 11 years ago
  10. 9204af4 asyncio: Use Interface instead of ABC. Fixes issue 19726. by Guido van Rossum · 11 years ago
  11. 7c63c85 Issue #19845: Updated the Compiling Python on Windows docs. by Zachary Ware · 11 years ago
  12. f8ceb04 Issue #19845: Updated the Compiling Python on Windows docs. by Zachary Ware · 11 years ago
  13. 8b1e2f3 Closes #19789: Merged update from 3.3. by Vinay Sajip · 11 years ago
  14. a9c179b Issue #19789: Clarified documentation for logging.disable. by Vinay Sajip · 11 years ago
  15. a1eedf9 Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  16. 896414f Fixed _pickle.Unpickler to handle empty persistent IDs correctly. by Alexandre Vassalotti · 11 years ago
  17. 6fe39b7 Issue #17897: Optimized unpickle prefetching. by Serhiy Storchaka · 11 years ago
  18. cc6e87b Issue #19088: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  19. 1a83070 Issue #19088: Fix incorrect caching of the copyreg module. by Alexandre Vassalotti · 11 years ago
  20. 8ddd59e Issue #19728: don't be sensitive to line endings by Nick Coghlan · 11 years ago
  21. 60f08c8 Issue #19726: actually running 'hg add' helps... by Nick Coghlan · 11 years ago
  22. fdf3a62 Issue #19728: add private ensurepip._uninstall CLI by Nick Coghlan · 11 years ago
  23. 1b1b178 Fix and test pip version consistency by Nick Coghlan · 11 years ago
  24. 9730e33 Issue #3693: Fix array obscure error message when given a str. by Alexandre Vassalotti · 11 years ago
  25. ed7dc14 Null merge by Zachary Ware · 11 years ago
  26. 8519e5a More realistic example for selectors.py. by Guido van Rossum · 11 years ago
  27. 16d970f Null merge by Serhiy Storchaka · 11 years ago
  28. 889d24e Revert unrelated changes introduced by changeset b2066bc8cab9 (issue #19795). by Serhiy Storchaka · 11 years ago
  29. ed05b8a Issue #19712: Port test.test_importlib.import_ tests to use PEP 451 by Brett Cannon · 11 years ago
  30. a951f3d Remove trailing blanks. by Charles-François Natali · 11 years ago
  31. a9f90bc Set the FDs non-blocking in the selectors example. by Charles-François Natali · 11 years ago
  32. de3a136 asyncio: Add 'shield' to __all__. by Guido van Rossum · 11 years ago
  33. d2476c6 Issue #19698: Remove exec_module() from the built-in and extension by Brett Cannon · 11 years ago
  34. 0e90e99 Issue #19795: Improved markup of True/False constants. by Serhiy Storchaka · 11 years ago
  35. fbc1c26 Issue #19795: Improved markup of True/False constants. by Serhiy Storchaka · 11 years ago
  36. 567eba1 Use PyDict_GetItemWithError instead of PyDict_GetItem in cpickle. by Alexandre Vassalotti · 11 years ago
  37. 6bf41e5 Remove explicit empty tuple reuse in cpickle. by Alexandre Vassalotti · 11 years ago
  38. b13e6bc Remove the tuple reuse optimization in _Pickle_FastCall. by Alexandre Vassalotti · 11 years ago
  39. b6e66eb Some minor clarifications in the documentation of pathlib + inheritance diagram by Eli Bendersky · 11 years ago
  40. 8148164 Issue #19815: Fix segfault when parsing empty namespace declaration. by Eli Bendersky · 11 years ago
  41. 4b79518 Fix indentation from previous commit by Eli Bendersky · 11 years ago
  42. 5dd40e5 Issue #19815: Fix segfault when parsing empty namespace declaration. by Eli Bendersky · 11 years ago
  43. 470fba1 SNI was added in OpenSSL 0.9.8f [11 Oct 2007], too by Christian Heimes · 11 years ago
  44. dec813f ssl.create_default_context() sets OP_NO_COMPRESSION to prevent CRIME by Christian Heimes · 11 years ago
  45. 04a684b Issue #19595: Re-enable a long-disabled test in test_winsound by Zachary Ware · 11 years ago
  46. 50a5dad Issue #19595: Re-enable a long-disabled test in test_winsound by Zachary Ware · 11 years ago
  47. 23bdd83 Encapsulate cpickle global state in a dedicated object. by Alexandre Vassalotti · 11 years ago
  48. c034156 Change pathlib documentation to use "raise" instead of "throw". by Ned Deily · 11 years ago
  49. 5362abf Issue #19818: tracemalloc, the number of frame limit cannot be zero anymore by Victor Stinner · 11 years ago
  50. a5062c5 asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() accept bytearray/memoryview too. Change some asserts with proper exceptions. by Guido van Rossum · 11 years ago
  51. f28ce60 Closes #19786: tracemalloc, remove the arbitrary limit of 100 frames by Victor Stinner · 11 years ago
  52. 3c0481d Close #19798: replace "maximum" term with "peak" in get_traced_memory() by Victor Stinner · 11 years ago
  53. cced076 asyncio: Fix get_event_loop() to call set_event_loop() when setting the loop. By Anthony Baire. by Guido van Rossum · 11 years ago
  54. 1314ef7 add SO_PRIORITY (closes #19802) by Benjamin Peterson · 11 years ago
  55. 20c28c1 Combine the FastCall functions in cpickle. by Alexandre Vassalotti · 11 years ago
  56. ba9d75e Skip test_find_mac on Windows (issue #19804). by Serhiy Storchaka · 11 years ago
  57. c303cfd Skip test_find_mac on Windows (issue #19804). by Serhiy Storchaka · 11 years ago
  58. 5143ce5 merge 3.3 (#19805) by Benjamin Peterson · 11 years ago
  59. b152e17 recommend OrderedDict for this FAQ (closes #19805) by Benjamin Peterson · 11 years ago
  60. d75803c merge 3.3 (#19729) by Benjamin Peterson · 11 years ago
  61. 0ee22bf fix format spec recursive expansion (closes #19729) by Benjamin Peterson · 11 years ago
  62. 14fff88 Issue #19788: kill_python(_d).exe is now run as a PreBuildEvent on the by Zachary Ware · 11 years ago
  63. bb65b5b Issue #19788: kill_python(_d).exe is now run as a PreBuildEvent on the by Zachary Ware · 11 years ago
  64. 6a22833 Merge with 3.3 by Zachary Ware · 11 years ago
  65. 910b1c3 Merge heads by Zachary Ware · 11 years ago
  66. 99fb051 Merge heads by Zachary Ware · 11 years ago
  67. 29f8cb6 Issue #19588: Merge with 3.3 by Zachary Ware · 11 years ago
  68. a6edea5 Issue #19588: Fixed tests in test_random that were silently skipped most by Zachary Ware · 11 years ago
  69. 822963e Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with by Serhiy Storchaka · 11 years ago
  70. 56507c7 Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with by Serhiy Storchaka · 11 years ago
  71. 518e6ee Use @bigmemtest more accurately. by Mark Dickinson · 11 years ago
  72. a04f4e0 Use @bigmemtest more accurately. by Mark Dickinson · 11 years ago
  73. 03cc565 Issue #19793: Improved markup for True/False constants in pathlib documentation. by Serhiy Storchaka · 11 years ago
  74. 687ff0e Issue #11489: JSON decoder now accepts lone surrogates. by Serhiy Storchaka · 11 years ago
  75. c93329b Issue #11489: JSON decoder now accepts lone surrogates. by Serhiy Storchaka · 11 years ago
  76. 1df8867 Issue #19638: Merge from 3.3 by Mark Dickinson · 11 years ago
  77. f45bbb6 Issue #19638: Raise ValueError instead of crashing when converting billion character strings to float. by Mark Dickinson · 11 years ago
  78. 6bfe392 Issue #19794: Improved markup for True/False constants. by Serhiy Storchaka · 11 years ago
  79. 22dc4d5 Issue #19794: Improved markup for True/False constants. by Serhiy Storchaka · 11 years ago
  80. eaec359 Issue #19760: Silence sysconfig's 'SO' key deprecation warnings in tests. by Serhiy Storchaka · 11 years ago
  81. 59463d8 tracemalloc: fix get_traced_memory() docstring for result type by Victor Stinner · 11 years ago
  82. 802a484 tracemalloc: Fix hash methods of Statistic and StatisticDiff by Victor Stinner · 11 years ago
  83. 5831882 merge with 3.3 by Georg Brandl · 11 years ago
  84. 1833ac3 Markup fix. by Georg Brandl · 11 years ago
  85. ad39360 Fix suspicious test case by Christian Heimes · 11 years ago
  86. 4dc7420 Issue #18874: Fix typo by Victor Stinner · 11 years ago
  87. 2ead3d2 Issue #18874: make it more explicit than set_reentrant() only accept 0 or 1 by Victor Stinner · 11 years ago
  88. 7a5be14 Issue #18874: tracemalloc: Comment the trace_t structure by Victor Stinner · 11 years ago
  89. 8e3708d Issue #18874: allow to call tracemalloc.Snapshot.statistics(cumulative=True) by Victor Stinner · 11 years ago
  90. 00773df Issue #18874: apply Jim Jewett's patch on tracemalloc doc by Victor Stinner · 11 years ago
  91. de2f132 Issue #18874: tracemalloc: explain the purpose of get_traces.tracebacks in a comment by Victor Stinner · 11 years ago
  92. 49c96fb asyncio: Add StreamReaderProtocol to __all__. by Guido van Rossum · 11 years ago
  93. 000de53 Issue #19752: Fix "HAVE_DEV_PTMX" implementation of os.openpty() by Victor Stinner · 11 years ago
  94. b4a04fb Reverting e39db21df580 eagerly due to buildbot failures. by Alexandre Vassalotti · 11 years ago
  95. dd7e291 #13592, #17087: add whatsnew entry about regex/match object repr improvements. by Ezio Melotti · 11 years ago
  96. f94a041 Combine _Pickler_FastCall and _Unpickler_FastCall in cpickle. by Alexandre Vassalotti · 11 years ago
  97. 613a97e #19778: fix a couple of re reprs in the documentation. by Ezio Melotti · 11 years ago
  98. 1048fb5 Issue #19739: Try to fix compiler warnings on 32-bit Windows. by Alexandre Vassalotti · 11 years ago
  99. 2cf4b0f Issue #19742: fix a test_pathlib failure when a file owner or group isn't in the system database by Antoine Pitrou · 11 years ago
  100. c7cf5fc Issue #19691: remove outdated mention about RuntimeError by Antoine Pitrou · 11 years ago