diff options
author | Guido van Rossum <guido@python.org> | 1993-03-29 11:30:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-03-29 11:30:50 (GMT) |
commit | e7113b6b3dd99b4d05fc81c18e1c2a94fa8e1ebb (patch) | |
tree | d779bf09fa3a7df8bd5876f398f353348f13f9de /Lib/stringold.py | |
parent | 04321d1e472ac2ffd06776f117a5ec14e76b7bb7 (diff) | |
download | cpython-e7113b6b3dd99b4d05fc81c18e1c2a94fa8e1ebb.zip cpython-e7113b6b3dd99b4d05fc81c18e1c2a94fa8e1ebb.tar.gz cpython-e7113b6b3dd99b4d05fc81c18e1c2a94fa8e1ebb.tar.bz2 |
* Fix bug in tzparse.py for DST timezone
* Added whatis command to pdb.py
* new module GET.py (GL definitions from <gl/get.h>)
* rect.py: is_empty takes a rect as argument, not two points.
* Added tests for builtin round() [XXX not yet complete!]
Diffstat (limited to 'Lib/stringold.py')
-rw-r--r-- | Lib/stringold.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/stringold.py b/Lib/stringold.py index aed3eaf..e5dc194 100644 --- a/Lib/stringold.py +++ b/Lib/stringold.py @@ -1,6 +1,8 @@ # module 'string' -- A collection of string operations -# XXX Some of these operations are incredibly slow and should be built in +# Warning: most of the code you see here isn't normally used nowadays. +# At the end of this file most functions are replaced by built-in +# functions imported from built-in module "strop". # Some strings for ctype-style character classification whitespace = ' \t\n' |