mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Recode modules from latin-1 to utf-8
This commit is contained in:
parent
6b03ee6033
commit
d72402effc
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).
|
||||
|
@ -403,11 +402,11 @@ class UnicodeTest(string_tests.CommonTest,
|
|||
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