diff options
author | Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> | 2019-09-12 10:02:59 +0100 |
---|---|---|
committer | Stéphane Wirtel <stephane@wirtel.be> | 2019-09-12 10:02:59 +0100 |
commit | 92777d5e5aed1753bafe07265dbe98b2d271815b (patch) | |
tree | a609553e4f137751da0e2624372e9b96e4f79d4e /Lib/test/test_dis.py | |
parent | a06d683d7fd88721eaf59abcf5b02eb82045c7b1 (diff) | |
download | cpython-git-92777d5e5aed1753bafe07265dbe98b2d271815b.tar.gz |
bpo-18578: Rename and document test.bytecode_helper as test.support.bytecode_helper (GH-15168)
Rename and document test.bytecode_helper as test.support.bytecode_helper
Diffstat (limited to 'Lib/test/test_dis.py')
-rw-r--r-- | Lib/test/test_dis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py index 11f97e6c08..fecf203cc9 100644 --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -1,7 +1,7 @@ # Minimal tests for dis module from test.support import captured_stdout -from test.bytecode_helper import BytecodeTestCase +from test.support.bytecode_helper import BytecodeTestCase import unittest import sys import dis |