Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Apparently FreeBSD enables some HW floating-point exceptions by default. | Tim Peters | 2002-12-28 | 1 | -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 prototype | Mark Hammond | 2002-08-02 | 1 | -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 as | Thomas Wouters | 2000-07-22 | 1 | -1/+1 |
| | | | | possible. | ||||
* | - ANSI-fication | Fredrik Lundh | 2000-07-09 | 1 | -3/+1 |
| | | | | (patch #100805 by Peter Schneider-Kamp) | ||||
* | Py_Main() must be DL_EXPORT too. | Guido van Rossum | 1998-12-07 | 1 | -1/+1 |
| | |||||
* | Now include Python.h | Guido van Rossum | 1998-08-08 | 1 | -0/+2 |
| | |||||
* | Keep gcc -Wall happy | Guido van Rossum | 1997-08-15 | 1 | -0/+1 |
| | |||||
* | This is now the "real" main program -- it calls Py_Main(argc, argv) | Guido van Rossum | 1997-07-19 | 1 | -0/+10 |
which is in the library and does all the work. |