Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Apply two changes, systematically: | Guido van Rossum | 1997-10-01 | 1 | -5/+1 |
| | | | | | | | | | | | | | | | | | (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! | ||||
* | Different strategy regarding whether to declare getrusage() and | Guido van Rossum | 1997-08-17 | 1 | -11/+9 |
| | | | | | | getpagesize() -- #ifdef doesn't work, Linux has conflicting decls in its headers. Choice: only declare the return type, not the argument prototype, and not on Linux. | ||||
* | Added std copyright notice. | Guido van Rossum | 1997-08-15 | 1 | -0/+31 |
| | |||||
* | purported linux portability patch (Oliver Andrich) | Guido van Rossum | 1997-08-05 | 1 | -0/+4 |
| | |||||
* | Quieted gcc -Wall by removing unused local variables. | Barry Warsaw | 1997-01-14 | 1 | -2/+0 |
| | |||||
* | Added Jeremy's resource module. | Guido van Rossum | 1996-12-18 | 1 | -0/+240 |