1. e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 9 years ago
  2. f63dab5 Back-out wcstok deprecation suppression and updates calls to use wcstok_s. by Steve Dower · 9 years ago
  3. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 9 years ago
  4. ce43f38 Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN is by Victor Stinner · 10 years ago
  5. f6a271a Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename by Victor Stinner · 10 years ago
  6. 6999441 Issue #20355: -W command line options now have higher priority than the PYTHONWARNINGS environment variable. Patch by Arfrever. by Antoine Pitrou · 10 years ago
  7. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
  8. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  9. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  10. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  11. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  12. 3e1e97a #16937: merge with 3.3. by Ezio Melotti · 11 years ago
  13. 61b0c67 #16937: document that stdin is always buffered, even when -u is used. Patch by Elena Oat. by Ezio Melotti · 11 years ago
  14. 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 11 years ago
  15. e3ed4ed Issue #18338: `python --version` now prints version string to stdout, and by Serhiy Storchaka · 11 years ago
  16. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
  17. 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  18. 1a6cb30 Issue #5845: Enable tab-completion in the interactive interpreter by default, thanks to a new sys.__interactivehook__. by Antoine Pitrou · 11 years ago
  19. 7d36e4f Close #14439: Python now prints the traceback on runpy failure at startup. by Victor Stinner · 11 years ago
  20. 8b9a8f3 #16306: merge with 3.3. by Ezio Melotti · 12 years ago
  21. 8a6d1fe #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  22. a0dd22e #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  23. ab70e2a #16135: Removal of OS/2 support (posixmodule y platform dependent files) by Jesus Cea · 12 years ago
  24. 9bd9cd3 Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on Mac OS X. by Ronald Oussoren · 12 years ago
  25. eb61f8b Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on Mac OS X. by Ronald Oussoren · 12 years ago
  26. 90db661 Closes #15307: symlinks now work on OS X with framework Python builds. Patch by Ronald Oussoren. by Vinay Sajip · 12 years ago
  27. f28fbab Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
  28. f01a337 Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
  29. aa93642 Issue #14605: Use None in sys.path_importer_cache to represent no by Brett Cannon · 12 years ago
  30. 42ae472 merge with 3.2 by Georg Brandl · 12 years ago
  31. 7ef825f merge with 3.2 by Georg Brandl · 12 years ago
  32. c9a4207 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 12 years ago
  33. c9f54cf enable hash randomization by default by Benjamin Peterson · 12 years ago
  34. 528b54b Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  35. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  36. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  37. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  38. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  39. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  40. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  41. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  42. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  43. b90db4c Issue #11918: OS/2 and VMS are no more supported because of the lack of by Victor Stinner · 13 years ago
  44. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago
  45. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  46. 44a6c16 Merged revisions 87991 via svnmerge from by Eli Bendersky · 13 years ago
  47. 0739591 Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844 by Eli Bendersky · 13 years ago
  48. 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 13 years ago
  49. 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
  50. 9d87119 #1772833: add -q command line option. by Georg Brandl · 14 years ago
  51. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  52. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  53. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  54. e0f3268 run_file(): encode the filename with PyUnicode_EncodeFSDefault() instead of by Victor Stinner · 14 years ago
  55. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  56. 9a6692f Py_Main() uses _Py_wchar2char() to encode the filename in error messages by Victor Stinner · 14 years ago
  57. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  58. 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
  59. 4726e40 Rewrite RunMainFromImporter() by Victor Stinner · 14 years ago
  60. 5c848a8 Isse #8589: Decode PYTHONWARNINGS from utf-8 on Mac OS X by Victor Stinner · 14 years ago
  61. c2d76fd Issue #8589: surrogateescape error handler is not available at startup by Victor Stinner · 14 years ago
  62. 9802b39 PYTHONFSENCODING is not available on Windows or Mac OS X by Victor Stinner · 14 years ago
  63. 398356b Improve error message if the command is not decodable by Victor Stinner · 14 years ago
  64. 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 14 years ago
  65. 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
  66. f2e08b3 Create _Py_wchar2char() function, reverse of _Py_char2wchar() by Victor Stinner · 14 years ago
  67. e9b428f Reimplement addbuilddir() in C inside getpath.c, so as to execute it by Antoine Pitrou · 14 years ago
  68. 0a3ddad Issue #9425: Create run_file() subfunction by Victor Stinner · 14 years ago
  69. a62207c Issue #9425: Create run_command() subfunction by Victor Stinner · 14 years ago
  70. 9ca9c25 Issue #8589: Decode PYTHONWARNINGS environment variable with the file system by Victor Stinner · 14 years ago
  71. 2e71d01 Merged revisions 81250-81253 via svnmerge from by Victor Stinner · 14 years ago
  72. 6baded4 Issue #6697: Fix a crash if code of "python -c code" contains surrogates by Victor Stinner · 14 years ago
  73. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  74. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  75. d61deca Move _Py_char2wchar from python.c to main.c. by Ronald Oussoren · 14 years ago
  76. a1bda34 strings from _Py_char2wchar need PyMem_Free by Philip Jenvey · 14 years ago
  77. e53de3d #7301: decode $PYTHONWARNINGS in the same way as argv, test non-ascii values by Philip Jenvey · 14 years ago
  78. ad6139a Merged revisions 79936 via svnmerge from by Benjamin Peterson · 14 years ago
  79. a9aedd2 woops these strings aren't kept around, free them by Philip Jenvey · 14 years ago
  80. 0805ca3 Merged revisions 79878-79880 via svnmerge from by Philip Jenvey · 14 years ago
  81. ffbc2f6 Merged revisions 78872 via svnmerge from by Victor Stinner · 14 years ago
  82. 52f6dd7 Merged revisions 78826 via svnmerge from by Victor Stinner · 14 years ago
  83. cefb316 Merged revisions 75571,75576-75577 via svnmerge from by Antoine Pitrou · 15 years ago
  84. 011bd62 Merged revisions 75570 via svnmerge from by Antoine Pitrou · 15 years ago
  85. c3c6fed Merged revisions 74010,74034,74054 via svnmerge from by Georg Brandl · 15 years ago
  86. cf7128c Merged revisions 74051-74052 via svnmerge from by Alexandre Vassalotti · 15 years ago
  87. 3e264e1 This fixes issue5143 and includes a test. by Ronald Oussoren · 15 years ago
  88. 0560843 Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-line by Antoine Pitrou · 15 years ago
  89. 374e220 #4747: on Windows, starting a module with a non-ascii filename would print a useless "SyntaxError: None" by Amaury Forgeot d'Arc · 16 years ago
  90. 9a5499b #3705: Command-line arguments were not correctly decoded when the by Amaury Forgeot d'Arc · 16 years ago
  91. dd8059f #3626: On cygwin, starting "python z" would not display any error message: by Amaury Forgeot d'Arc · 16 years ago
  92. 8530e85 Revert r33661, which broke all buildbots. by Amaury Forgeot d'Arc · 16 years ago
  93. 14b7851 #3705: Fix crash when given a non-ascii value on the command line for the "-c" and "-m" parameters by Amaury Forgeot d'Arc · 16 years ago
  94. 5651eaa Issue #3705: py3k aborts if "-c" or "-m" is given a non-ascii value. by Antoine Pitrou · 16 years ago
  95. 2ab3444 Fixed wording of python --help text. by Christian Heimes · 16 years ago
  96. e1b5ac6 Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  97. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  98. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  99. 0f59989 Forward-port PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  100. 8dc226f Merged revisions 62774-62775,62785,62787-62788 via svnmerge from by Christian Heimes · 16 years ago