Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Needed to add DL_EXPORT to (redundant?) extern decl of module init function. | Guido van Rossum | 1998-12-10 | 1 | -1/+1 |
| | |||||
* | Add DL_EXPORT() to all modules that could possibly be used | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
| | | | | on BeOS or Windows. | ||||
* | Apply two changes, systematically: | Guido van Rossum | 1997-10-01 | 1 | -5/+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! | ||||
* | New form of PyFPE_END_PROTECT macro. | Guido van Rossum | 1997-03-14 | 1 | -6/+6 |
| | |||||
* | Lee's next version. Careful: this now dumps core for me on SGI IRIX 5.3. | Guido van Rossum | 1997-02-21 | 1 | -118/+76 |
| | | | | Lee is wondering whether to withdraw his patchs. Sigh. | ||||
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 1 | -0/+228 |
Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros. |