mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Merged revisions 85861 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85861 | antoine.pitrou | 2010-10-27 20:52:48 +0200 (mer., 27 oct. 2010) | 3 lines Recode modules from latin-1 to utf-8 ........
This commit is contained in:
parent
0619ae798d
commit
43ffd5c013
4 changed files with 9 additions and 12 deletions
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: iso-8859-1 -*-
|
||||
""" Test script for the Unicode implementation.
|
||||
|
||||
Written by Marc-Andre Lemburg (mal@lemburg.com).
|
||||
|
|
@ -415,11 +414,11 @@ class UnicodeTest(
|
|||
self.assertTrue("b0".isidentifier())
|
||||
self.assertTrue("bc".isidentifier())
|
||||
self.assertTrue("b_".isidentifier())
|
||||
self.assertTrue("µ".isidentifier())
|
||||
self.assertTrue("µ".isidentifier())
|
||||
|
||||
self.assertFalse(" ".isidentifier())
|
||||
self.assertFalse("[".isidentifier())
|
||||
self.assertFalse("©".isidentifier())
|
||||
self.assertFalse("©".isidentifier())
|
||||
self.assertFalse("0".isidentifier())
|
||||
|
||||
def test_isprintable(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue