Commit 47ae763d authored by Victor Stinner's avatar Victor Stinner

Issue #19629: Add missing "import stat"

Sort also imports in support/__init__.py
parent ec86469c
...@@ -3,28 +3,29 @@ ...@@ -3,28 +3,29 @@
if __name__ != 'test.support': if __name__ != 'test.support':
raise ImportError('support must be imported from the test package') raise ImportError('support must be imported from the test package')
import collections.abc
import contextlib import contextlib
import errno import errno
import fnmatch
import functools import functools
import gc import gc
import socket
import sys
import os
import platform
import shutil
import warnings
import unittest
import importlib import importlib
import importlib.util import importlib.util
import collections.abc import logging.handlers
import os
import platform
import re import re
import shutil
import socket
import stat
import struct
import subprocess import subprocess
import time import sys
import sysconfig import sysconfig
import fnmatch
import logging.handlers
import struct
import tempfile import tempfile
import time
import unittest
import warnings
try: try:
import _thread, threading import _thread, threading
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment