summaryrefslogtreecommitdiff
path: root/Lib/test/test_unary.py
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-05-22 16:52:54 +0000
committerWalter Dörwald <walter@livinglogic.de>2007-05-22 16:52:54 +0000
commit1f5947b30a870008ebd2367b2f4f9a5897f657c9 (patch)
tree2a881cb9b9dcfeaa1e96dc0905f0a9b56993caca /Lib/test/test_unary.py
parent02427050c187ba54649c7ad16b35370c31a0b238 (diff)
downloadcpython-git-1f5947b30a870008ebd2367b2f4f9a5897f657c9.tar.gz
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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_unary.py b/Lib/test/test_unary.py
index fa467ba131..d8e86a99e4 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):