mirror of https://github.com/python/cpython
revert unintended change
This commit is contained in:
parent
9c6e6a0c7f
commit
e28544ad5f
|
@ -19,7 +19,10 @@ class PEP3131Test(unittest.TestCase):
|
||||||
𝔘𝔫𝔦𝔠𝔬𝔡𝔢 = 1
|
𝔘𝔫𝔦𝔠𝔬𝔡𝔢 = 1
|
||||||
# On wide builds, this is normalized, but on narrow ones it is not. See
|
# On wide builds, this is normalized, but on narrow ones it is not. See
|
||||||
# #12746.
|
# #12746.
|
||||||
self.assertIn("Unicode", dir())
|
try:
|
||||||
|
self.assertIn("𝔘𝔫𝔦𝔠𝔬𝔡𝔢", dir())
|
||||||
|
except AssertionError:
|
||||||
|
raise unittest.case._ExpectedFailure(sys.exc_info())
|
||||||
|
|
||||||
def test_invalid(self):
|
def test_invalid(self):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue