diff options
author | Collin Winter <collinw@gmail.com> | 2007-04-04 18:14:17 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-04-04 18:14:17 (GMT) |
commit | 9475db7662c972a0048da86118221babecb20fd0 (patch) | |
tree | b8f99e58673236007eb131a260f96dca625aaad1 /Lib | |
parent | b1bb01e2f6a74814d347c295c625b6455c253857 (diff) | |
download | cpython-9475db7662c972a0048da86118221babecb20fd0.zip cpython-9475db7662c972a0048da86118221babecb20fd0.tar.gz cpython-9475db7662c972a0048da86118221babecb20fd0.tar.bz2 |
Clean up imports.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_dis.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py index c31092c..d0e1c7e 100644 --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -1,11 +1,11 @@ -from test.test_support import verify, verbose, TestFailed, run_unittest +# Minimal tests for dis module + +from test.test_support import verbose, run_unittest +import unittest import sys import dis import StringIO -# Minimal tests for dis module - -import unittest def _f(a): print a |