1. f63dab5 Back-out wcstok deprecation suppression and updates calls to use wcstok_s. by Steve Dower · 9 years ago
  2. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 9 years ago
  3. ce43f38 Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN is by Victor Stinner · 10 years ago
  4. f6a271a Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename by Victor Stinner · 10 years ago
  5. 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
  6. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
  7. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  8. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  9. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  10. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  11. 3e1e97a #16937: merge with 3.3. by Ezio Melotti · 11 years ago
  12. 61b0c67 #16937: document that stdin is always buffered, even when -u is used. Patch by Elena Oat. by Ezio Melotti · 11 years ago
  13. 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 11 years ago
  14. e3ed4ed Issue #18338: `python --version` now prints version string to stdout, and by Serhiy Storchaka · 11 years ago
  15. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
  16. 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  17. 1a6cb30 Issue #5845: Enable tab-completion in the interactive interpreter by default, thanks to a new sys.__interactivehook__. by Antoine Pitrou · 11 years ago
  18. 7d36e4f Close #14439: Python now prints the traceback on runpy failure at startup. by Victor Stinner · 11 years ago
  19. 8b9a8f3 #16306: merge with 3.3. by Ezio Melotti · 12 years ago
  20. 8a6d1fe #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  21. a0dd22e #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  22. ab70e2a #16135: Removal of OS/2 support (posixmodule y platform dependent files) by Jesus Cea · 12 years ago
  23. 9bd9cd3 Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on Mac OS X. by Ronald Oussoren · 12 years ago
  24. eb61f8b Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on Mac OS X. by Ronald Oussoren · 12 years ago
  25. 90db661 Closes #15307: symlinks now work on OS X with framework Python builds. Patch by Ronald Oussoren. by Vinay Sajip · 12 years ago
  26. 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
  27. 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
  28. aa93642 Issue #14605: Use None in sys.path_importer_cache to represent no by Brett Cannon · 12 years ago
  29. 42ae472 merge with 3.2 by Georg Brandl · 12 years ago
  30. 7ef825f merge with 3.2 by Georg Brandl · 12 years ago
  31. c9a4207 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 12 years ago
  32. c9f54cf enable hash randomization by default by Benjamin Peterson · 12 years ago
  33. 528b54b Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  34. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  35. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  36. 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
  37. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  38. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  39. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  40. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  41. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  42. b90db4c Issue #11918: OS/2 and VMS are no more supported because of the lack of by Victor Stinner · 13 years ago
  43. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago
  44. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  45. 44a6c16 Merged revisions 87991 via svnmerge from by Eli Bendersky · 13 years ago
  46. 0739591 Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844 by Eli Bendersky · 13 years ago
  47. 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 13 years ago
  48. 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
  49. 9d87119 #1772833: add -q command line option. by Georg Brandl · 14 years ago
  50. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  51. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  52. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  53. e0f3268 run_file(): encode the filename with PyUnicode_EncodeFSDefault() instead of by Victor Stinner · 14 years ago
  54. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  55. 9a6692f Py_Main() uses _Py_wchar2char() to encode the filename in error messages by Victor Stinner · 14 years ago
  56. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  57. 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
  58. 4726e40 Rewrite RunMainFromImporter() by Victor Stinner · 14 years ago
  59. 5c848a8 Isse #8589: Decode PYTHONWARNINGS from utf-8 on Mac OS X by Victor Stinner · 14 years ago
  60. c2d76fd Issue #8589: surrogateescape error handler is not available at startup by Victor Stinner · 14 years ago
  61. 9802b39 PYTHONFSENCODING is not available on Windows or Mac OS X by Victor Stinner · 14 years ago
  62. 398356b Improve error message if the command is not decodable by Victor Stinner · 14 years ago
  63. 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 14 years ago
  64. 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
  65. f2e08b3 Create _Py_wchar2char() function, reverse of _Py_char2wchar() by Victor Stinner · 14 years ago
  66. e9b428f Reimplement addbuilddir() in C inside getpath.c, so as to execute it by Antoine Pitrou · 14 years ago
  67. 0a3ddad Issue #9425: Create run_file() subfunction by Victor Stinner · 14 years ago
  68. a62207c Issue #9425: Create run_command() subfunction by Victor Stinner · 14 years ago
  69. 9ca9c25 Issue #8589: Decode PYTHONWARNINGS environment variable with the file system by Victor Stinner · 14 years ago
  70. 2e71d01 Merged revisions 81250-81253 via svnmerge from by Victor Stinner · 14 years ago
  71. 6baded4 Issue #6697: Fix a crash if code of "python -c code" contains surrogates by Victor Stinner · 14 years ago
  72. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  73. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  74. d61deca Move _Py_char2wchar from python.c to main.c. by Ronald Oussoren · 14 years ago
  75. a1bda34 strings from _Py_char2wchar need PyMem_Free by Philip Jenvey · 14 years ago
  76. e53de3d #7301: decode $PYTHONWARNINGS in the same way as argv, test non-ascii values by Philip Jenvey · 14 years ago
  77. ad6139a Merged revisions 79936 via svnmerge from by Benjamin Peterson · 14 years ago
  78. a9aedd2 woops these strings aren't kept around, free them by Philip Jenvey · 14 years ago
  79. 0805ca3 Merged revisions 79878-79880 via svnmerge from by Philip Jenvey · 14 years ago
  80. ffbc2f6 Merged revisions 78872 via svnmerge from by Victor Stinner · 14 years ago
  81. 52f6dd7 Merged revisions 78826 via svnmerge from by Victor Stinner · 14 years ago
  82. cefb316 Merged revisions 75571,75576-75577 via svnmerge from by Antoine Pitrou · 15 years ago
  83. 011bd62 Merged revisions 75570 via svnmerge from by Antoine Pitrou · 15 years ago
  84. c3c6fed Merged revisions 74010,74034,74054 via svnmerge from by Georg Brandl · 15 years ago
  85. cf7128c Merged revisions 74051-74052 via svnmerge from by Alexandre Vassalotti · 15 years ago
  86. 3e264e1 This fixes issue5143 and includes a test. by Ronald Oussoren · 15 years ago
  87. 0560843 Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-line by Antoine Pitrou · 15 years ago
  88. 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
  89. 9a5499b #3705: Command-line arguments were not correctly decoded when the by Amaury Forgeot d'Arc · 16 years ago
  90. dd8059f #3626: On cygwin, starting "python z" would not display any error message: by Amaury Forgeot d'Arc · 16 years ago
  91. 8530e85 Revert r33661, which broke all buildbots. by Amaury Forgeot d'Arc · 16 years ago
  92. 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
  93. 5651eaa Issue #3705: py3k aborts if "-c" or "-m" is given a non-ascii value. by Antoine Pitrou · 16 years ago
  94. 2ab3444 Fixed wording of python --help text. by Christian Heimes · 16 years ago
  95. e1b5ac6 Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  96. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  97. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  98. 0f59989 Forward-port PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  99. 8dc226f Merged revisions 62774-62775,62785,62787-62788 via svnmerge from by Christian Heimes · 16 years ago
  100. 32dde22 Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62055-62058,62060-62066,62068-62074,62076-62079,62081-62083,62086-62089,62092-62094,62098,62101,62104,62106-62109,62115-62122,62124-62125,62128,62130,62132,62134-62135,62137,62139-62140,62144,62146,62151,62155,62157,62162-62166,62171-62172,62175-62176,62178,62181-62186,62188-62192,62196,62200-62203,62206,62211-62213,62215-62218,62222,62224-62226,62228,62232,62236,62240-62245,62248,62250-62254,62256-62258,62262,62264-62265,62267-62270,62272-62276,62280-62288,62291-62292,62299-62301,62307,62312,62316-62318,62322-62331,62333-62337,62339-62344,62346-62348 via svnmerge from by Neal Norwitz · 16 years ago