1. eb81795 bpo-30565: Add PYTHONCOERCECLOCALE=warn runtime flag (GH-2260) by Nick Coghlan · 7 years ago
  2. 6ea4186 bpo-28180: Implementation for PEP 538 (#659) by Nick Coghlan · 7 years ago
  3. 87fa8a7 bpo-29898: Fix incorrect env variable name (GH-1576) by Berker Peksag · 7 years ago
  4. 0710d75 bpo-29770: remove outdated PYO related info (GH-590) by Xiang Zhang · 8 years ago
  5. 35a1f7f massage English for -X descriptions a bit by Benjamin Peterson · 8 years ago
  6. f576343 Issue #28532: Add what's new entry for python -VV option by INADA Naoki · 8 years ago
  7. 0e175a6 Issue #28532: Show sys.version when -V option is supplied twice by INADA Naoki · 8 years ago
  8. 9440787 Issue #26638: Merge option warning fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  9. b8c5f54 Issue #26638: Work around more CLI options that can’t be linked by Martin Panter · 8 years ago
  10. 5c67933 Issue #26638: Mask undefined CLI options to defeat new Sphinx warnings by Martin Panter · 8 years ago
  11. 3929499 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) by Steve Dower · 8 years ago
  12. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  13. 09808e7 Issue #12982: Merge from 3.5 by Berker Peksag · 8 years ago
  14. f43bc98 Issue #12982: Thanks to PEP 488, Python no longer creates .pyo files by Berker Peksag · 8 years ago
  15. 7e160ce Issue #23034: The output of a special Python build with defined COUNT_ALLOCS, by Serhiy Storchaka · 8 years ago
  16. f5c4b99 PyMem_Malloc() now uses the fast pymalloc allocator by Victor Stinner · 8 years ago
  17. d1700a9 Fix typo in doc: avoid the french "& cie" :-) by Victor Stinner · 8 years ago
  18. 9b46a57 Doc: fix typos, patch written by Stefan Behnel by Victor Stinner · 8 years ago
  19. c2fc568 Enhance documentation on malloc debug hooks by Victor Stinner · 8 years ago
  20. 34be807 Add PYTHONMALLOC env var by Victor Stinner · 8 years ago
  21. 8c16cb9 Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. by Georg Brandl · 9 years ago
  22. c04fb56 Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar by Martin Panter · 9 years ago
  23. 7dda421 Issue #14285: Do not catch exceptions initializing any ancestor package by Martin Panter · 9 years ago
  24. 153627c Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. by Serhiy Storchaka · 9 years ago
  25. 0424eaf Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. by Serhiy Storchaka · 9 years ago
  26. 770ce20 Regenerated pydoc-topics and fixed bad/suspicious doc markup for Python 3.5.0a4. by Larry Hastings · 9 years ago
  27. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  28. 1dd4982 Issue #23681: The -b option now affects comparisons of bytes with int. by Serhiy Storchaka · 9 years ago
  29. 8b1cbd2 Issue #12602: Add missing cross-references to runpy and using/cmdline docs. by Berker Peksag · 10 years ago
  30. 525d355 Fixing broken links in doc, part 3: the rest by Georg Brandl · 10 years ago
  31. 75f7490 PYTHONY2K is long gone. Remove traces from the docs and manpage. by Georg Brandl · 10 years ago
  32. 9c1dba2 Revert #22251 by Berker Peksag · 10 years ago
  33. 3749404 Issue #22251: Fix ReST markup to avoid errors building docs. by Berker Peksag · 10 years ago
  34. 62511fd asyncio: document the debug mode by Victor Stinner · 10 years ago
  35. 0f3e6bc asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. by Victor Stinner · 11 years ago
  36. 5147e00 whatsnew: -m <namespace package>, plus 'using' doc updates. by R David Murray · 11 years ago
  37. 3728d6c Issue #18874: Remove tracemalloc.set_traceback_limit() by Victor Stinner · 11 years ago
  38. ed3b0bc Issue #18874: Implement the PEP 454 (tracemalloc) by Victor Stinner · 11 years ago
  39. bf28d2d Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional. by Serhiy Storchaka · 11 years ago
  40. 8898350 Close #18957: The PYTHONFAULTHANDLER environment variable now only enables the by Victor Stinner · 11 years ago
  41. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  42. b6738df (Merge 3.3) doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tag by Victor Stinner · 11 years ago
  43. ae6d05b doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tag by Victor Stinner · 11 years ago
  44. 3e1e97a #16937: merge with 3.3. by Ezio Melotti · 11 years ago
  45. 61b0c67 #16937: document that stdin is always buffered, even when -u is used. Patch by Elena Oat. by Ezio Melotti · 11 years ago
  46. 1a6cb30 Issue #5845: Enable tab-completion in the interactive interpreter by default, thanks to a new sys.__interactivehook__. by Antoine Pitrou · 11 years ago
  47. 711c370 Merge versionadded addition and typo fix from 3.3. by Ezio Melotti · 11 years ago
  48. a1eb483 Add versionadded for `-X faulthandler` (also fix typo and markup). by Ezio Melotti · 11 years ago
  49. 1f8898a #17323: The "[X refs, Y blocks]" printed by debug builds has been disabled by default. It can be re-enabled with the `-X showrefcount` option. by Ezio Melotti · 11 years ago
  50. 950d5fd Issue #16241: document -X faulthandler command line option. by Andrew Svetlov · 12 years ago
  51. 2365f41 Merge issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 12 years ago
  52. abfc7df Issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 12 years ago
  53. 0209dc1 Clarify that hash randomization is on by default by Antoine Pitrou · 12 years ago
  54. 859aad6 Remove packaging from the standard library. by Éric Araujo · 12 years ago
  55. 42ae472 merge with 3.2 by Georg Brandl · 13 years ago
  56. 7ef825f merge with 3.2 by Georg Brandl · 13 years ago
  57. c9a4207 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 13 years ago
  58. c9f54cf enable hash randomization by default by Benjamin Peterson · 13 years ago
  59. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 13 years ago
  60. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  61. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  62. fc70cbc Issue #13883: PYTHONCASEOK also works with OS X. by Brett Cannon · 13 years ago
  63. 1740afd Issue #13883: Document all platforms PYTHONCASEOK works on. by Brett Cannon · 13 years ago
  64. 08c08eb Issue #13597: Fix the documentation of the "-u" command-line option, and wording of "What's new in Python 3.0" about standard streams. by Antoine Pitrou · 13 years ago
  65. d5ec134 Issue #13597: Fix the documentation of the "-u" command-line option, and wording of "What's new in Python 3.0" about standard streams. by Antoine Pitrou · 13 years ago
  66. e640521 Merge follow-up for #11254 and other changes from 3.2 by Éric Araujo · 13 years ago
  67. 3bb1a6f State explicitely that PYTHONDONTWRITEBYTECODE is equivalent to -B by Éric Araujo · 13 years ago
  68. 7dc76fd Merge doc changes from 3.2 (#8617, #10745). by Éric Araujo · 13 years ago
  69. 6ef038e Add documentation for PEP 370 features in distutils (#10745). by Éric Araujo · 13 years ago
  70. de4f05b Improve documentation for PEP 370 support in site module (#8617). by Éric Araujo · 13 years ago
  71. 577a6af Merge doc fixes from 3.2 by Éric Araujo · 13 years ago
  72. d2f8cec Fix a few misuses of :option: I missed in r86521. by Éric Araujo · 13 years ago
  73. d727e23 Issue #11393: The fault handler handles also SIGABRT by Victor Stinner · 13 years ago
  74. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago
  75. c09fca6 Do not touch sys.path when site is imported and python was started with -S. by Éric Araujo · 13 years ago
  76. 9d87119 #1772833: add -q command line option. by Georg Brandl · 14 years ago
  77. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  78. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  79. c7b6908 Merged revisions 82262,82269,82434,82480-82481,82484-82485,82487-82488,82594,82599,82615 via svnmerge from by Georg Brandl · 14 years ago
  80. 16215c7 Merged revisions 78959,79170,79175,79177,79180,79183,79186,79193,79581 via svnmerge from by Georg Brandl · 14 years ago
  81. 9802b39 PYTHONFSENCODING is not available on Windows or Mac OS X by Victor Stinner · 14 years ago
  82. 358b63a Fix typo by Éric Araujo · 14 years ago
  83. 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 14 years ago
  84. 67b21b7 Consistency check for versionadded/changed directives. by Georg Brandl · 14 years ago
  85. d26c18a Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory by Nick Coghlan · 14 years ago
  86. 44afa5e Fix typo. by Georg Brandl · 14 years ago
  87. 08bf91c Merged revisions 79307,79408,79430,79533,79542,79579-79580,79585-79587,79607-79608,79622,79717,79820,79822,79828,79862,79875,79923-79924,79941-79943,79945,79947,79951-79952 via svnmerge from by Benjamin Peterson · 14 years ago
  88. 0805ca3 Merged revisions 79878-79880 via svnmerge from by Philip Jenvey · 14 years ago
  89. 379299c #8213: document behavior of -u on py3k better. by Georg Brandl · 14 years ago
  90. a1bd445 Merged revisions 77995 via svnmerge from by Barry Warsaw · 15 years ago
  91. 615368f Document the -J and -X options for CPython. Note that unlike for py2k, we by Barry Warsaw · 15 years ago
  92. fa83395 Merged revisions 77300 via svnmerge from by Antoine Pitrou · 15 years ago
  93. 4adb288 Issue #7631: Fix undefined references to the "built-in file object", which by Antoine Pitrou · 15 years ago
  94. 1e6711b Merged revisions 77200 via svnmerge from by Brett Cannon · 15 years ago
  95. 4b44807 Clean up the list of allowed command-line flags. by Brett Cannon · 15 years ago
  96. 628e6f9 Merged revisions 75797 via svnmerge from by Georg Brandl · 15 years ago
  97. 495f7b5 Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,75602-75607,75610-75613,75616-75617,75623,75627,75640,75647,75696,75795 via svnmerge from by Georg Brandl · 15 years ago
  98. c5605df Merged revisions 73941-73943,74076,74094,74186,74211-74214,74247,74254,74262,74311,74334,74368 via svnmerge from by Georg Brandl · 15 years ago
  99. 22b3431 Merged revisions 74209 via svnmerge from by Georg Brandl · 15 years ago
  100. eeb575f Merged revisions 73544 via svnmerge from by Georg Brandl · 15 years ago