We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd8623e commit 59567efCopy full SHA for 59567ef
Lib/test/test_dis.py
@@ -1,19 +1,22 @@
1
# Minimal tests for dis module
2
+#
3
+# Do NOT change the order of the imports since it could lead to a timeout for
4
+# test_embed.test_specialized_static_code_gets_unspecialized_at_Py_FINALIZE
5
+# on Windows 32-bits.
6
7
import contextlib
8
import dis
9
import io
-import opcode
10
import re
11
import sys
-import tempfile
12
import types
13
import unittest
14
from test.support import (captured_stdout, requires_debug_ranges,
- requires_specialization, cpython_only,
- os_helper)
15
+ requires_specialization, cpython_only)
16
from test.support.bytecode_helper import BytecodeTestCase
17
18
+import opcode
19
+
20
21
def get_tb():
22
def _error():
0 commit comments