diff options
author | Christian Heimes <christian@cheimes.de> | 2013-11-24 00:12:22 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-11-24 00:12:22 (GMT) |
commit | b52d8ba159596449439de8abb83994ef877d0669 (patch) | |
tree | 6046ac6a16a656442f601f2ba03d0bed78bf027a | |
parent | 71135ac72d89b2a0a4f0dcea158bf44d2e7f7512 (diff) | |
parent | c8635b4192e2857e7b6c68649a4b090f460be289 (diff) | |
download | cpython-b52d8ba159596449439de8abb83994ef877d0669.zip cpython-b52d8ba159596449439de8abb83994ef877d0669.tar.gz cpython-b52d8ba159596449439de8abb83994ef877d0669.tar.bz2 |
merge
-rw-r--r-- | Lib/test/test__opcode.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test__opcode.py b/Lib/test/test__opcode.py index cab8769..0152e9d 100644 --- a/Lib/test/test__opcode.py +++ b/Lib/test/test__opcode.py @@ -1,8 +1,9 @@ import dis -import _opcode -from test.support import run_unittest +from test.support import run_unittest, import_module import unittest +_opcode = import_module("_opcode") + class OpcodeTests(unittest.TestCase): def test_stack_effect(self): |