1. efb60c0 Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which by Antoine Pitrou · 15 years ago
  2. 0b5b8af Fix GCC warning about fprintf used without a string literal and by Alexandre Vassalotti · 15 years ago
  3. 3c4a546 #5704: let python -3 imply -t as well. by Georg Brandl · 16 years ago
  4. 08259e8 Py3k warnings now automatically include -Qwarn for division. by Raymond Hettinger · 16 years ago
  5. f902a94 be more specific in -3 option help by Benjamin Peterson · 16 years ago
  6. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  7. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  8. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  9. af748c3 Implemented PEP 370 by Christian Heimes · 16 years ago
  10. 41a0a37 Improve -X error message. by Georg Brandl · 17 years ago
  11. 7a98d27 Applied patch #2617 from Frank Wierzbicki wit some extras from me by Christian Heimes · 17 years ago
  12. 91e0cda Backport #1442: report exception when startup file cannot be run. by Georg Brandl · 17 years ago
  13. 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
  14. 10ed0f5 Remove all traces of HAVE_STRERROR. by Brett Cannon · 17 years ago
  15. 5cc3f26 Coverity CID #168 leaked_storage: Returned without freeing storage "fp" by Christian Heimes · 17 years ago
  16. aed6c66 patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG. by Georg Brandl · 17 years ago
  17. 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
  18. 8c4592a Backport some main.c cleanup from the py3k branch by Nick Coghlan · 17 years ago
  19. 327a39b Patch #1739468: Directories and zipfiles containing __main__.py are now executable by Nick Coghlan · 17 years ago
  20. e545ff3 Fix Coverity 168: Close the file before returning (exiting). by Neal Norwitz · 17 years ago
  21. 1a42ece Fix bug 1764407 - the -i switch now does the right thing when using the -m switch by Nick Coghlan · 17 years ago
  22. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
  23. 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
  24. d14ef77 Silence a warning from gcc 4.0.1 by specifying a function's parameter list is by Brett Cannon · 18 years ago
  25. 7b7c9d4 Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, by Martin v. Löwis · 18 years ago
  26. e2782bb Rewrite help message to remove some of the parentheticals. (There were a lot of them.) by Andrew M. Kuchling · 18 years ago
  27. 8964688 Make --help mention that -v can be supplied multiple times by Andrew M. Kuchling · 18 years ago
  28. 9dceedb Accept long options "--help" and "--version". by Georg Brandl · 18 years ago
  29. 81f444b Make the -m switch conform to the documentation of sys.path by behaving like the -c switch by Nick Coghlan · 18 years ago
  30. a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 18 years ago
  31. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 19 years ago
  32. 64182fe Some more changes to make code compile under a C++ compiler. by Anthony Baxter · 19 years ago
  33. e2ebb2d Implement PEP 338 which has been marked as accepted by GvR by Nick Coghlan · 19 years ago
  34. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 19 years ago
  35. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  36. 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 19 years ago
  37. db29e0f SF patch #1035498: -m option to run a module as a script by Raymond Hettinger · 20 years ago
  38. 4d4dfb7 Patch #1011822: Display errno/strerror for inaccessible files. by Martin v. Löwis · 20 years ago
  39. 786ea6b Add pystack definition to Misc/gdbinit with some explanation of its behavior by Skip Montanaro · 21 years ago
  40. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  41. 6caea37 Patch #794400: Let PYTHONSTARTUP influence the compiler flags. by Martin v. Löwis · 21 years ago
  42. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  43. d86dcd3 Py_Main(): Add a check for the PYTHONINSPECT environment variable by Barry Warsaw · 21 years ago
  44. 852ba7e Patch #672053: Return a result from Py_Main, instead of exiting. by Martin v. Löwis · 22 years ago
  45. e98922f Patch #695250: Suppress COPYRIGHT if site.py is not read. Fixes #672614. by Martin v. Löwis · 22 years ago
  46. fbd861b An #endif was missing in Just's patch. Added. by Jack Jansen · 22 years ago
  47. 2ac79ef removing one Mac hack and add another: by Just van Rossum · 22 years ago
  48. 7a924e6 Patch #696645: Remove VMS code with uncertain authorship. by Martin v. Löwis · 22 years ago
  49. 0a116f3 Squashed compiler warnings by adding casts, making sure prototypes are in by Jack Jansen · 22 years ago
  50. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  51. 5134a54 Fix minor whitespace nit, for consistency with Python's C style rules. by Fred Drake · 22 years ago
  52. 9cf424b On Cygwin, put stdin, stderr, and stdout in binary mode when the -u by Sjoerd Mullender · 22 years ago
  53. 21ed16a Added one call to Py_Main(), for OSX framework builds only, that will get the by Jack Jansen · 22 years ago
  54. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  55. ce233b4 Fix last checkin, can't use " inside a string by Neal Norwitz · 22 years ago
  56. 611a710 Patch #552812: Better description in "python -h" for -u. by Martin v. Löwis · 22 years ago
  57. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 23 years ago
  58. aeff668 Remove mentioning of -U option in "python -h" output. by Marc-André Lemburg · 23 years ago
  59. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  60. 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 23 years ago
  61. 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 23 years ago
  62. 61c345f Rename the -D option to -Q, to avoid a Jython option name conflict. by Guido van Rossum · 23 years ago
  63. 97741a3 Oops. The -W option takes args, not -X. by Guido van Rossum · 23 years ago
  64. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  65. 7d4bb9f Add -E command line switch (ignore environment variables like PYTHONHOME by Neil Schemenauer · 23 years ago
  66. 36002d7 Add "help" to the things one is encouraged to type for more by Guido van Rossum · 23 years ago
  67. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  68. da4dbc3 Removed the Python version from the PYTHONHOMEHELP string. It was by Marc-André Lemburg · 23 years ago
  69. bceccf5 Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger by Guido van Rossum · 24 years ago
  70. bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 24 years ago
  71. 3ed4c15 RISCOS changes by dschwertberger. by Guido van Rossum · 24 years ago
  72. 3e13b1e Py_Main(): When compiled by Insure (i.e. __INSURE__ is defined), call by Barry Warsaw · 24 years ago
  73. 793de09 Add a line to "python -h" output about PYTHONCASEOK. by Tim Peters · 24 years ago
  74. 47f5fdc Add the -W option. by Guido van Rossum · 24 years ago
  75. 2cffc7d Move our own getopt() implementation to _PyOS_GetOpt(), and use it by Thomas Wouters · 24 years ago
  76. 3b2aedb Py_Main(), usage(), usage_mid: Add -h and -V flags to print the usage by Barry Warsaw · 24 years ago
  77. a22865e Instead of printing all 9 lines of copyright info, print by Guido van Rossum · 24 years ago
  78. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  79. 0df002c Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(), by Guido van Rossum · 24 years ago
  80. 620f377 - changed 1.5 to 2.0 in the help text (the PYTHONHOMEHELP define) by Fredrik Lundh · 24 years ago
  81. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  82. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  83. 57e11ae usage_mid: Remove the description of the -X flag; it's gone now. by Barry Warsaw · 24 years ago
  84. c15a9a1 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  85. dc8b569 Patch from Tim Peters to repare a the problem that tracebacks are off by Guido van Rossum · 26 years ago
  86. 01b7ced On Windows, -i shouldn't call set[v]buf(stdin, ...) because it screws by Guido van Rossum · 26 years ago
  87. 6b86a42 Document -OO; "unsafe" optimization that removes docstrings. Marc-Andre Lemburg. by Guido van Rossum · 26 years ago
  88. 9c1201f Py_Main() must be DL_EXPORT too. by Guido van Rossum · 26 years ago
  89. e7adf3e Documented PYTHONOPTIMIZE; by Marc Lemburg. by Guido van Rossum · 26 years ago
  90. 7c33095 Typo in usage message. by Guido van Rossum · 27 years ago
  91. bba92ca Add -t option to set the Py_TabcheckFlag flag. by Guido van Rossum · 27 years ago
  92. 22ffac1 Don't use setvbuf unless HAVE_SETVBUF is defined. by Guido van Rossum · 27 years ago
  93. a075ce1 Two changes by Jeff Rush (slightly tweaked): by Guido van Rossum · 27 years ago
  94. 873c35c Take out the setlocale() call. It affects atof() and will break by Guido van Rossum · 27 years ago
  95. 44c36bb Add call to setlocale(LC_ALL, ""). by Guido van Rossum · 27 years ago
  96. 3d26cc9 Move the "import readline" to an earlier place so it is also done when by Guido van Rossum · 27 years ago
  97. 7922bd7 Added -X option to suppress default import of site.py. Also split the by Guido van Rossum · 27 years ago
  98. 83b6709 Swap the sense of the -X option vis-a-vis Py_UseClassExceptionsFlag so by Barry Warsaw · 27 years ago
  99. f488af3 Parse new command line option -X which enables exception classes. by Barry Warsaw · 27 years ago
  100. 9b5dbed Attempt to import readline at interactive startup. by Guido van Rossum · 27 years ago