diff options
author | Walter Dörwald <walter@livinglogic.de> | 2007-05-22 16:52:54 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2007-05-22 16:52:54 (GMT) |
commit | 1f5947b30a870008ebd2367b2f4f9a5897f657c9 (patch) | |
tree | 2a881cb9b9dcfeaa1e96dc0905f0a9b56993caca /Lib/test/test_unary.py | |
parent | 02427050c187ba54649c7ad16b35370c31a0b238 (diff) | |
download | cpython-1f5947b30a870008ebd2367b2f4f9a5897f657c9.zip cpython-1f5947b30a870008ebd2367b2f4f9a5897f657c9.tar.gz cpython-1f5947b30a870008ebd2367b2f4f9a5897f657c9.tar.bz2 |
Remove have_unicode checks and merge those tests into the
normal code (or drop them if they only repeat previous
tests).
Diffstat (limited to 'Lib/test/test_unary.py')
-rw-r--r-- | Lib/test/test_unary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_unary.py b/Lib/test/test_unary.py index fa467ba..d8e86a9 100644 --- a/Lib/test/test_unary.py +++ b/Lib/test/test_unary.py @@ -1,7 +1,7 @@ """Test compiler changes for unary ops (+, -, ~) introduced in Python 2.2""" import unittest -from test.test_support import run_unittest, have_unicode +from test.test_support import run_unittest class UnaryOpTestCase(unittest.TestCase): |