summaryrefslogtreecommitdiff
path: root/Lib/string.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-03-29 11:30:50 +0000
committerGuido van Rossum <guido@python.org>1993-03-29 11:30:50 +0000
commitdc9b6b14aad8f2e801961adff952d33806816c46 (patch)
tree91867e62a07d003948dd303cd02d6e0fc3f88cf9 /Lib/string.py
parentdd58091ca2ce7e8fba5f8c45e740f9c8e1a15187 (diff)
downloadcpython-dc9b6b14aad8f2e801961adff952d33806816c46.tar.gz
* 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/string.py')
-rw-r--r--Lib/string.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/string.py b/Lib/string.py
index aed3eafb54..e5dc1946bc 100644
--- a/Lib/string.py
+++ b/Lib/string.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'