Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9bc4712

Browse files
committed
Add two more space tests.
1 parent 20badb3 commit 9bc4712

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Lib/test/test_bool.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,8 @@ def test_string(self):
203203
self.assertIs("0123".isnumeric(), True)
204204
self.assertIs("xyz".isnumeric(), False)
205205
self.assertIs(" ".isspace(), True)
206+
self.assertIs("\xa0".isspace(), True)
207+
self.assertIs("\u3000".isspace(), True)
206208
self.assertIs("XYZ".isspace(), False)
207209
self.assertIs("X".istitle(), True)
208210
self.assertIs("x".istitle(), False)

0 commit comments

Comments
 (0)