summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
Commit message (Expand)AuthorAgeFilesLines
* Add pystack definition to Misc/gdbinit with some explanation of its behaviorSkip Montanaro2004-03-011-0/+3
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-191-7/+0
* Patch #794400: Let PYTHONSTARTUP influence the compiler flags.Martin v. Löwis2003-11-181-9/+14
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Py_Main(): Add a check for the PYTHONINSPECT environment variableBarry Warsaw2003-06-291-0/+9
* Patch #672053: Return a result from Py_Main, instead of exiting.Martin v. Löwis2003-03-301-9/+9
* Patch #695250: Suppress COPYRIGHT if site.py is not read. Fixes #672614.Martin v. Löwis2003-03-301-3/+6
* An #endif was missing in Just's patch. Added.Jack Jansen2003-03-051-0/+1
* removing one Mac hack and add another:Just van Rossum2003-03-051-26/+16
* Patch #696645: Remove VMS code with uncertain authorship.Martin v. Löwis2003-03-051-33/+8
* Squashed compiler warnings by adding casts, making sure prototypes are inJack Jansen2002-12-231-0/+4
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-061-0/+57
* Fix minor whitespace nit, for consistency with Python's C style rules.Fred Drake2002-10-171-1/+1
* On Cygwin, put stdin, stderr, and stdout in binary mode when the -uSjoerd Mullender2002-08-091-2/+2
* Added one call to Py_Main(), for OSX framework builds only, that will get theJack Jansen2002-08-021-1/+17
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Fix last checkin, can't use " inside a stringNeal Norwitz2002-07-281-1/+1
* Patch #552812: Better description in "python -h" for -u.Martin v. Löwis2002-07-281-0/+1
* OS/2 EMX port changes (Modules part of patch #450267):Andrew MacIntyre2002-03-031-1/+5
* Remove mentioning of -U option in "python -h" output.Marc-André Lemburg2002-02-111-1/+0
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* SF bug #488514: -Qnew needs workTim Peters2001-12-061-1/+4
* PEP 238 documented -Qwarn as warning only for classic int or longGuido van Rossum2001-09-041-4/+8
* Rename the -D option to -Q, to avoid a Jython option name conflict.Guido van Rossum2001-09-041-7/+7
* Oops. The -W option takes args, not -X.Guido van Rossum2001-08-311-1/+1
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-311-19/+49
* 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