Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. | Neal Norwitz | 2006-03-16 | 1 | -198/+0 |
| | |||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -3/+3 |
| | | | | From SF patch #852334. | ||||
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
| | |||||
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 1 | -0/+1 |
| | | | | | | 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) | ||||
* | Oops...that will teach me to hit ^C^C too fast. Test passed. | Eric S. Raymond | 2001-02-09 | 1 | -1/+1 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -3/+2 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -100/+100 |
| | |||||
* | Adding a warning about the regsub module. This also disables further | Guido van Rossum | 2000-12-19 | 1 | -0/+7 |
| | | | | | warnings in this same module, to prevent getting a warning about importing regex (we *know* that it's obsolete :-). | ||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -3/+3 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | The third and final doc-string sweep by Ka-Ping Yee. | Guido van Rossum | 2000-02-04 | 1 | -6/+10 |
| | | | | | | | | The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac. | ||||
* | Store the current regex syntax along with the regular expression | Barry Warsaw | 1997-02-18 | 1 | -10/+15 |
| | | | | | | | string as the key to the cache. This means that changing the syntax will return the correct compiled pattern. clear_cache(): New function. | ||||
* | Use splitx() in capwords() (bugfix after interface change for split()). | Guido van Rossum | 1996-08-09 | 1 | -2/+2 |
| | | | | | Give capwords a default pattern argument which will recognize words as sequeces of [a-zA-Z0-9_]. | ||||
* | Changed split() to be compatible with changes to string.split(): the | Guido van Rossum | 1996-08-08 | 1 | -4/+24 |
| | | | | | | optional third argument gives a maximum number of delimiters to parse. The new function splitx() is like split() but returns a list containing the words as well as the delimiters. | ||||
* | Add third arg to split(). Add capwords() -- which uses that. | Guido van Rossum | 1996-06-11 | 1 | -1/+15 |
| | |||||
* | avoid eval() like the plague | Guido van Rossum | 1996-05-28 | 1 | -1/+2 |
| | |||||
* | New module regsub contains sub(), gsub() and split() as in nawk. | Guido van Rossum | 1992-09-20 | 1 | -0/+147 |
string.splitfields(s, '') now returns [s] as split() in nawk. Added _exit to exported functions of os. |