summaryrefslogtreecommitdiffstats
path: root/Modules/regexpr.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace abort with Py_FatalError.Martin v. Löwis2002-08-071-1/+1
|
* Python.h: Don't attempt to redefine NDEBUG if it's already defined.Tim Peters2001-07-151-1/+0
| | | | Others: Remove redundant includes of assert.h.
* bug #232815Fredrik Lundh2001-07-031-1/+1
| | | | | ch is unsigned, so testing for negative values doesn't make sense (as noticed by the OpenVMS compiler)
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
| | | | | | | | | | | | | | | | | | and a couple of functions that were missed in the previous batches. Not terribly tested, but very carefully scrutinized, three times. All these were found by the little findkrc.py that I posted to python-dev, which means there might be more lurking. Cases such as this: long func(a, b) long a; long b; /* flagword */ { and other cases where the last ; in the argument list isn't followed by a newline and an opening curly bracket. Regexps to catch all are welcome, of course ;)
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
| | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;)
* ANSI-ficationPeter Schneider-Kamp2000-07-101-59/+19
|
* casts for picky compilers.Guido van Rossum1999-04-101-1/+2
|
* Fix a benign problem found by a picky SGI compiler (unreachable breakGuido van Rossum1998-07-071-1/+0
| | | | after a return).
* Make new gcc -Wall happyGuido van Rossum1998-04-101-5/+10
|
* Small bugfixes for broken old style use of the syntax table. AMK, ofGuido van Rossum1997-12-021-6/+6
| | | | course.
* Get rid of most silly #include and #ifdefs near the top; these are allGuido van Rossum1997-09-051-55/+59
| | | | | | obsolete now it includes Python.h. Make all functions K&R compatible (Sue Williams).
* Change [_Py_]re_compile_pattern() to return a char*.Guido van Rossum1997-09-031-9/+9
| | | | | Since it only returns an error message (or NULL) there's no reason for it to be unsigned char *, and various compilers like this better.
* Casts by Jack to shut up the Mac compiler.Guido van Rossum1997-08-181-8/+8
|
* Last minute changes for \B. AMK.Guido van Rossum1997-08-151-2/+2
|
* 1.5a3 prerelease 1 from AMKGuido van Rossum1997-08-131-60/+109
|
* Fix bug with \< (AMK).Guido van Rossum1997-08-131-1/+1
|
* Add syntax for hex,octalGuido van Rossum1997-08-131-1/+7
|
* Jeffrey's latestsGuido van Rossum1997-07-171-26/+28
|
* Reformatted.Guido van Rossum1997-07-151-1557/+1548
| | | | | Fixed some problem with uninitialized syntax tables. Jeffrey.
* New versions straight from Jeffrey Ollie's web siteGuido van Rossum1997-07-101-117/+267
|
* Fix showstopping bug (^ wouldn't match after \n). Jeffrey Ollie.Guido van Rossum1997-05-141-1/+1
|
* Add a cast to a malloc to shut up the DEC Unix compiler.Guido van Rossum1997-05-141-1/+1
|
* Keep picky compilers happy.Guido van Rossum1997-05-131-4/+3
|
* Latest from Jeffrey Ollie.Guido van Rossum1997-05-091-1454/+1679
| | | | Infinite failure stack, some bugs fixed (fastmap, star_jump, register bug).
* Oops, missed some renamings.Guido van Rossum1997-05-071-5/+5
|
* Keep gcc -Wall happy.Guido van Rossum1996-12-051-2/+2
|
* Always include config.hGuido van Rossum1996-08-191-2/+0
|
* Need config.h (for Win etc.)Guido van Rossum1996-08-081-0/+4
|
* Subtle Windows changesGuido van Rossum1996-05-231-2/+2
|
* * Modules/{Setup.in,Makefile.pre.in}: renamed some modules toGuido van Rossum1994-08-051-0/+7
| | | | | | | | | | shorter names (dropped the "module" from the name): sunaudiodev, imgformat, audioop, imageop, imgfile * Modules/stropmodule.c (strop_rindex): make rindex('abc', '') do the right thing (i.e. return 3 instead of 0) * Modules/socketmodule.c: disabled allowbroadcast() socket method
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-011-4/+4
|
* Lint fluffGuido van Rossum1992-03-271-1/+12
|
* Ported to THINK C.Guido van Rossum1992-01-271-2/+15
|
* Retract the rage bugfix, but change the range assertion.Guido van Rossum1992-01-261-1/+2
|
* #ifdef'ed an unreachable line out.Guido van Rossum1992-01-191-0/+2
|
* Initial revisionGuido van Rossum1992-01-191-0/+1668