summaryrefslogtreecommitdiffstats
path: root/Modules/python.c
Commit message (Collapse)AuthorAgeFilesLines
* Change command line processing API to use wchar_t.Martin v. Löwis2008-04-051-1/+42
| | | | Fixes #2128.
* Apparently FreeBSD enables some HW floating-point exceptions by default.Tim Peters2002-12-281-0/+15
| | | | | | | This can cause core dumps when Python runs. Python relies on the 754- (and C99-) mandated default "non-stop" mode for FP exceptions. This patch from Ben Laurie disables at least one FP exception on FreeBSD at Python startup time.
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-2/+0
| | | | | | for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches.
* Even more ANSIfication: fix as many function pointers and declarations asThomas Wouters2000-07-221-1/+1
| | | | possible.
* - ANSI-ficationFredrik Lundh2000-07-091-3/+1
| | | | (patch #100805 by Peter Schneider-Kamp)
* Py_Main() must be DL_EXPORT too.Guido van Rossum1998-12-071-1/+1
|
* Now include Python.hGuido van Rossum1998-08-081-0/+2
|
* Keep gcc -Wall happyGuido van Rossum1997-08-151-0/+1
|
* This is now the "real" main program -- it calls Py_Main(argc, argv)Guido van Rossum1997-07-191-0/+10
which is in the library and does all the work.