summaryrefslogtreecommitdiffstats
path: root/Modules/fpectlmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Patch by Oliver Andrich for Lunix using glibc.Guido van Rossum1997-12-151-0/+4
|
* Some patches to Lee Busby's fpectl mods that accidentally didn't make itGuido van Rossum1997-10-201-3/+2
| | | | into 1.5a4.
* Apply two changes, systematically:Guido van Rossum1997-10-011-9/+3
| | | | | | | | | | | | | | | | | (1) Use PyErr_NewException("module.class", NULL, NULL) to create the exception object. (2) Remove all calls to Py_FatalError(); instead, return or ignore the errors -- the import code now checks PyErr_Occurred() after calling a module's init function, so it's no longer a fatal error for the initialization to fail. Also did some small cleanups, e.g. removed unnecessary test for "already initialized" from initfpectl(), and unified initposix()/initnt(). I haven't checked this very thoroughly, so while the changes are pretty trivial -- beware of untested code!
* Keep gcc -Wall happy.Guido van Rossum1997-04-291-2/+2
|
* Include setjmp.h so it compiles if WANT_SIGFPE_HANDLER is undefined.Guido van Rossum1997-03-141-0/+1
|
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-141-0/+244
Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros.