summaryrefslogtreecommitdiffstats
path: root/Modules/reopmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Apply two changes, systematically:Guido van Rossum1997-10-011-2/+2
| | | | | | | | | | | | | | | | | (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!
* Don't use ANSI string literal concatenation (everything is K&R compatible).Guido van Rossum1997-09-051-4/+4
|
* Casts by Jack to shut up the Mac compiler.Guido van Rossum1997-08-181-10/+10
|
* Keep gcc -Wall happyGuido van Rossum1997-08-151-2/+0
|
* Fixed refcount bug (thank you, Purify and AMK).Guido van Rossum1997-08-141-0/+1
|
* 1.5a3 prerelease 1 from AMKGuido van Rossum1997-08-131-11/+39
|
* Changes by AMK:Guido van Rossum1997-08-131-1/+527
| | | | | | | | | | | Removed handling of \e, \cX escapes, following a string-SIG discussion. Fixed minor typos in re.py re.error is now set equal to reop.error. Move definition of constants like NORMAL and CHARCLASS into reop, which exports them; re.py was changed to import them from reop. Added C equivalents of _expand and expand_escape to reop, and changed re.py to use them.
* Jeffrey's latestsGuido van Rossum1997-07-171-6/+125
|
* Jeffrey's newestGuido van Rossum1997-07-151-10/+8
|
* New version from Jeffrey after I complained about some glaring bugs.Guido van Rossum1997-07-111-0/+8
|
* New versions straight from Jeffrey Ollie's web siteGuido van Rossum1997-07-101-0/+375