1. ec6486d #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  2. 3b30b19 Fix closes 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
  3. 66e565e merge with 2.6 by Georg Brandl · 13 years ago
  4. 3aec568 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 13 years ago
  5. 6647113 merge 2.6 by Benjamin Peterson · 13 years ago
  6. 4e171d1 don't need this hack anymore by Benjamin Peterson · 13 years ago
  7. 776af40 Fix crash at startup with -W options. by Antoine Pitrou · 13 years ago
  8. cc3fa88 Fix crash at startup with -W options. by Antoine Pitrou · 13 years ago
  9. 8757cad Backport fix from default branch for ./python -R -Wd where hash('d') would not by Barry Warsaw · 13 years ago
  10. 9be6c3d kill interned strings computed before random initialization by Benjamin Peterson · 13 years ago
  11. aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 13 years ago
  12. 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 13 years ago
  13. 8842c35 Revert r80580 due to some unintended side effects. See issue #8202 for details. by Nick Coghlan · 14 years ago
  14. c7c96a9 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  15. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  16. c5e4485 Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' instead of '-c' while searching for the module to be executed by Nick Coghlan · 14 years ago
  17. cdd98fb fix PYTHONWARNINGS handling to not modify the original env value and improve by Philip Jenvey · 15 years ago
  18. aebbaeb #7301: add the environment variable $PYTHONWARNINGS to supplement the -W by Philip Jenvey · 15 years ago
  19. 65f9c4e Merged revisions 74052 via svnmerge from by Victor Stinner · 15 years ago
  20. ea16429 Partial backport of r78826: leave import site error handler unchanged (print by Victor Stinner · 15 years ago
  21. 6664426 Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt by Victor Stinner · 15 years ago
  22. 9aece75 Merged revisions 75570,75574,75624 via svnmerge from by Antoine Pitrou · 15 years ago
  23. efb60c0 Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which by Antoine Pitrou · 15 years ago
  24. 0b5b8af Fix GCC warning about fprintf used without a string literal and by Alexandre Vassalotti · 15 years ago
  25. 3c4a546 #5704: let python -3 imply -t as well. by Georg Brandl · 16 years ago
  26. 3259652 Py3k warnings now automatically include -Qwarn for division. by Raymond Hettinger · 16 years ago
  27. 08259e8 Py3k warnings now automatically include -Qwarn for division. by Raymond Hettinger · 16 years ago
  28. c04c289 Merged revisions 68292,68344,68361,68378,68424,68426,68429-68430,68450,68457,68480-68481,68493,68495,68499,68501,68512,68514-68515 via svnmerge from by Georg Brandl · 16 years ago
  29. f902a94 be more specific in -3 option help by Benjamin Peterson · 16 years ago
  30. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  31. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  32. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  33. af748c3 Implemented PEP 370 by Christian Heimes · 16 years ago
  34. 41a0a37 Improve -X error message. by Georg Brandl · 17 years ago
  35. 7a98d27 Applied patch #2617 from Frank Wierzbicki wit some extras from me by Christian Heimes · 17 years ago
  36. 91e0cda Backport #1442: report exception when startup file cannot be run. by Georg Brandl · 17 years ago
  37. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
  38. 10ed0f5 Remove all traces of HAVE_STRERROR. by Brett Cannon · 17 years ago
  39. 5cc3f26 Coverity CID #168 leaked_storage: Returned without freeing storage "fp" by Christian Heimes · 17 years ago
  40. aed6c66 patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG. by Georg Brandl · 17 years ago
  41. 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
  42. 8c4592a Backport some main.c cleanup from the py3k branch by Nick Coghlan · 17 years ago
  43. 327a39b Patch #1739468: Directories and zipfiles containing __main__.py are now executable by Nick Coghlan · 17 years ago
  44. e545ff3 Fix Coverity 168: Close the file before returning (exiting). by Neal Norwitz · 17 years ago
  45. 1a42ece Fix bug 1764407 - the -i switch now does the right thing when using the -m switch by Nick Coghlan · 17 years ago
  46. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
  47. 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
  48. d14ef77 Silence a warning from gcc 4.0.1 by specifying a function's parameter list is by Brett Cannon · 18 years ago
  49. 7b7c9d4 Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, by Martin v. Löwis · 18 years ago
  50. e2782bb Rewrite help message to remove some of the parentheticals. (There were a lot of them.) by Andrew M. Kuchling · 18 years ago
  51. 8964688 Make --help mention that -v can be supplied multiple times by Andrew M. Kuchling · 18 years ago
  52. 9dceedb Accept long options "--help" and "--version". by Georg Brandl · 18 years ago
  53. 81f444b Make the -m switch conform to the documentation of sys.path by behaving like the -c switch by Nick Coghlan · 18 years ago
  54. a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 18 years ago
  55. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 19 years ago
  56. 64182fe Some more changes to make code compile under a C++ compiler. by Anthony Baxter · 19 years ago
  57. e2ebb2d Implement PEP 338 which has been marked as accepted by GvR by Nick Coghlan · 19 years ago
  58. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 19 years ago
  59. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  60. 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 19 years ago
  61. db29e0f SF patch #1035498: -m option to run a module as a script by Raymond Hettinger · 20 years ago
  62. 4d4dfb7 Patch #1011822: Display errno/strerror for inaccessible files. by Martin v. Löwis · 20 years ago
  63. 786ea6b Add pystack definition to Misc/gdbinit with some explanation of its behavior by Skip Montanaro · 21 years ago
  64. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  65. 6caea37 Patch #794400: Let PYTHONSTARTUP influence the compiler flags. by Martin v. Löwis · 21 years ago
  66. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  67. d86dcd3 Py_Main(): Add a check for the PYTHONINSPECT environment variable by Barry Warsaw · 21 years ago
  68. 852ba7e Patch #672053: Return a result from Py_Main, instead of exiting. by Martin v. Löwis · 22 years ago
  69. e98922f Patch #695250: Suppress COPYRIGHT if site.py is not read. Fixes #672614. by Martin v. Löwis · 22 years ago
  70. fbd861b An #endif was missing in Just's patch. Added. by Jack Jansen · 22 years ago
  71. 2ac79ef removing one Mac hack and add another: by Just van Rossum · 22 years ago
  72. 7a924e6 Patch #696645: Remove VMS code with uncertain authorship. by Martin v. Löwis · 22 years ago
  73. 0a116f3 Squashed compiler warnings by adding casts, making sure prototypes are in by Jack Jansen · 22 years ago
  74. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  75. 5134a54 Fix minor whitespace nit, for consistency with Python's C style rules. by Fred Drake · 22 years ago
  76. 9cf424b On Cygwin, put stdin, stderr, and stdout in binary mode when the -u by Sjoerd Mullender · 22 years ago
  77. 21ed16a Added one call to Py_Main(), for OSX framework builds only, that will get the by Jack Jansen · 22 years ago
  78. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  79. ce233b4 Fix last checkin, can't use " inside a string by Neal Norwitz · 22 years ago
  80. 611a710 Patch #552812: Better description in "python -h" for -u. by Martin v. Löwis · 22 years ago
  81. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 23 years ago
  82. aeff668 Remove mentioning of -U option in "python -h" output. by Marc-André Lemburg · 23 years ago
  83. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  84. 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 23 years ago
  85. 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 23 years ago
  86. 61c345f Rename the -D option to -Q, to avoid a Jython option name conflict. by Guido van Rossum · 23 years ago
  87. 97741a3 Oops. The -W option takes args, not -X. by Guido van Rossum · 23 years ago
  88. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  89. 7d4bb9f Add -E command line switch (ignore environment variables like PYTHONHOME by Neil Schemenauer · 23 years ago
  90. 36002d7 Add "help" to the things one is encouraged to type for more by Guido van Rossum · 23 years ago
  91. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  92. da4dbc3 Removed the Python version from the PYTHONHOMEHELP string. It was by Marc-André Lemburg · 23 years ago
  93. bceccf5 Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger by Guido van Rossum · 24 years ago
  94. bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 24 years ago
  95. 3ed4c15 RISCOS changes by dschwertberger. by Guido van Rossum · 24 years ago
  96. 3e13b1e Py_Main(): When compiled by Insure (i.e. __INSURE__ is defined), call by Barry Warsaw · 24 years ago
  97. 793de09 Add a line to "python -h" output about PYTHONCASEOK. by Tim Peters · 24 years ago
  98. 47f5fdc Add the -W option. by Guido van Rossum · 24 years ago
  99. 2cffc7d Move our own getopt() implementation to _PyOS_GetOpt(), and use it by Thomas Wouters · 24 years ago
  100. 3b2aedb Py_Main(), usage(), usage_mid: Add -h and -V flags to print the usage by Barry Warsaw · 24 years ago