summaryrefslogtreecommitdiffstats
path: root/Lib/pre.py
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
|
* Fix bug #570057: Broken pre.subn() (and pre.sub())Fredrik Lundh2002-06-271-2/+4
| | | | | This should be backported to the 2.2.X series (how do I do that?)
* Whitespace normalization.Tim Peters2002-04-161-1/+1
|
* Add deprecation warning to 'pre' moduleAndrew M. Kuchling2002-04-101-0/+6
|
* Clean up a bare except where we only expect to catch pcre.error.Fred Drake2001-05-111-1/+1
|
* Make docstrings raw, since they contain literal backslashes.Ka-Ping Yee2001-03-101-1/+1
|
* bunch more __all__ listsSkip Montanaro2001-02-151-1/+3
| | | | | | also modified check_all function to suppress all warnings since they aren't relevant to what this test is doing (allows quiet checking of regsub, for instance)
* __all__ for several more modulesSkip Montanaro2001-02-121-0/+2
|
* String method cleanup.Eric S. Raymond2001-02-101-3/+1
|
* String method conversion.Eric S. Raymond2001-02-091-2/+2
|
* Whitespace normalization.Tim Peters2001-01-151-47/+47
|
* Correct docstring about return value when group didn't participate in matchAndrew M. Kuchling2000-09-041-4/+4
| | | | (pointed out by /F)
* 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 ;)
* Switch to sre for regular expression matching (the new mini-re moduleGuido van Rossum2000-06-301-0/+652
is actually by Fredrik Lundh). This will break the re tests -- Fredrik will fix this before the final release.