commit | 9bc47120d370aa7f621013bcfa1e0b3f1b31505f | [log] [tgz] |
---|---|---|
author | Walter Dörwald <walter@livinglogic.de> | Sat May 05 16:04:46 2007 +0000 |
committer | Walter Dörwald <walter@livinglogic.de> | Sat May 05 16:04:46 2007 +0000 |
tree | e089d66aed28e11919d94cf6e9d81cec84ad324e | |
parent | 20badb31b47b2e47d56dd93c209ebfc2d303c016 [diff] [blame] |
Add two more space tests.
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py index d558292..5dc71cc 100644 --- a/Lib/test/test_bool.py +++ b/Lib/test/test_bool.py
@@ -203,6 +203,8 @@ self.assertIs("0123".isnumeric(), True) self.assertIs("xyz".isnumeric(), False) self.assertIs(" ".isspace(), True) + self.assertIs("\xa0".isspace(), True) + self.assertIs("\u3000".isspace(), True) self.assertIs("XYZ".isspace(), False) self.assertIs("X".istitle(), True) self.assertIs("x".istitle(), False)