Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. |