* 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!]
This commit is contained in:
Guido van Rossum 1993-03-29 11:30:50 +00:00
parent 04321d1e47
commit e7113b6b3d
7 changed files with 51 additions and 9 deletions

View file

@ -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'