summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
Commit message (Expand)AuthorAgeFilesLines
* Add -E command line switch (ignore environment variables like PYTHONHOMENeil Schemenauer2001-07-231-7/+18
* Add "help" to the things one is encouraged to type for moreGuido van Rossum2001-07-181-1/+2
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-1/+1
* Removed the Python version from the PYTHONHOMEHELP string. It wasMarc-André Lemburg2001-06-121-1/+1
* Updated version of RISCOS support. SF patch 411213 by Dietmar SchwertbergerGuido van Rossum2001-04-101-8/+12
* Extend support for from __future__ import nested_scopesJeremy Hylton2001-03-221-3/+8
* RISCOS changes by dschwertberger.Guido van Rossum2001-03-021-0/+23
* Py_Main(): When compiled by Insure (i.e. __INSURE__ is defined), callBarry Warsaw2001-02-231-0/+14
* Add a line to "python -h" output about PYTHONCASEOK.Tim Peters2001-02-221-0/+1
* Add the -W option.Guido van Rossum2000-12-151-1/+8
* Move our own getopt() implementation to _PyOS_GetOpt(), and use itThomas Wouters2000-11-031-16/+12
* Py_Main(), usage(), usage_mid: Add -h and -V flags to print the usageBarry Warsaw2000-09-151-8/+32
* Instead of printing all 9 lines of copyright info, printGuido van Rossum2000-09-051-1/+4
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(),Guido van Rossum2000-08-271-4/+3
* - changed 1.5 to 2.0 in the help textFredrik Lundh2000-07-091-7/+3
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* usage_mid: Remove the description of the -X flag; it's gone now.Barry Warsaw2000-05-021-5/+0
* Marc-Andre Lemburg:Guido van Rossum2000-05-011-1/+6
* Patch from Tim Peters to repare a the problem that tracebacks are offGuido van Rossum1999-04-191-2/+9
* On Windows, -i shouldn't call set[v]buf(stdin, ...) because it screwsGuido van Rossum1999-02-091-1/+1
* Document -OO; "unsafe" optimization that removes docstrings.Guido van Rossum1999-01-281-1/+2
* Py_Main() must be DL_EXPORT too.Guido van Rossum1998-12-071-1/+1
* Documented PYTHONOPTIMIZE; by Marc Lemburg.Guido van Rossum1998-10-071-1/+1
* Typo in usage message.Guido van Rossum1998-04-131-1/+1
* Add -t option to set the Py_TabcheckFlag flag.Guido van Rossum1998-04-101-5/+10
* Don't use setvbuf unless HAVE_SETVBUF is defined.Guido van Rossum1998-03-061-4/+12
* Two changes by Jeff Rush (slightly tweaked):Guido van Rossum1997-12-051-9/+26
* Take out the setlocale() call. It affects atof() and will breakGuido van Rossum1997-10-311-8/+0
* Add call to setlocale(LC_ALL, "").Guido van Rossum1997-10-081-1/+8
* Move the "import readline" to an earlier place so it is also done whenGuido van Rossum1997-09-161-8/+10
* Added -X option to suppress default import of site.py. Also split theGuido van Rossum1997-08-291-5/+13
* Swap the sense of the -X option vis-a-vis Py_UseClassExceptionsFlag soBarry Warsaw1997-08-291-2/+3
* Parse new command line option -X which enables exception classes.Barry Warsaw1997-08-291-1/+6
* Attempt to import readline at interactive startup.Guido van Rossum1997-08-051-0/+8
* Py_Cleanup() is now Py_Finalize().Guido van Rossum1997-08-051-1/+1
* Free the malloc'ed buffer that holds the command once we're done with it.Guido van Rossum1997-08-021-2/+3
* Removed a bunch of extern declarations of functions that are nowGuido van Rossum1997-07-191-6/+0
* This is no longer the real main program; it now defines Py_Main(), soGuido van Rossum1997-07-191-30/+7
* Add platform to welcome message.Guido van Rossum1997-05-191-2/+3
* Add PYTHONHOME to the usage message.Guido van Rossum1997-04-301-0/+2
* OK, I lied. On Windows, _IOLBF seems to be the same as fullGuido van Rossum1997-04-111-4/+8
* Change in when and how stdin and stdout are set to line-buffering.Guido van Rossum1997-04-111-3/+5
* Add -O option which sets Py_OptimizeFlag to avoid emitting SET_LINENO.Guido van Rossum1997-03-031-2/+7
* Add parentheses around && within || as gcc -Wall advises.Guido van Rossum1997-02-141-1/+1
* My version of Lee Busby's patches to make '-i' pretend stdin is a ttyGuido van Rossum1997-02-141-22/+35
* Fix the _setmode() patch for MS_WINDOWS: include <fcntl.h> and useGuido van Rossum1997-01-171-2/+6
* On Windows, -u implies binary mode for stdin/stdoutGuido van Rossum1997-01-111-0/+4
* Include unistd.h to keep gcc -Wall happy.Guido van Rossum1996-12-091-0/+3