[Python-checkins] r55153 - python/branches/py3k-struni/Lib/test/test_bool.py

walter.doerwald python-checkins at python.org
Sat May 5 18:04:49 CEST 2007


Author: walter.doerwald
Date: Sat May  5 18:04:46 2007
New Revision: 55153

Modified:
   python/branches/py3k-struni/Lib/test/test_bool.py
Log:
Add two more space tests.


Modified: python/branches/py3k-struni/Lib/test/test_bool.py
==============================================================================
--- python/branches/py3k-struni/Lib/test/test_bool.py	(original)
+++ python/branches/py3k-struni/Lib/test/test_bool.py	Sat May  5 18:04:46 2007
@@ -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)


More information about the Python-checkins mailing list