Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20badb3 commit 9bc4712Copy full SHA for 9bc4712
1 file changed
Lib/test/test_bool.py
@@ -203,6 +203,8 @@ def test_string(self):
203
self.assertIs("0123".isnumeric(), True)
204
self.assertIs("xyz".isnumeric(), False)
205
self.assertIs(" ".isspace(), True)
206
+ self.assertIs("\xa0".isspace(), True)
207
+ self.assertIs("\u3000".isspace(), True)
208
self.assertIs("XYZ".isspace(), False)
209
self.assertIs("X".istitle(), True)
210
self.assertIs("x".istitle(), False)
0 commit comments