Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
47ae763d
Commit
47ae763d
authored
Jul 21, 2014
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #19629: Add missing "import stat"
Sort also imports in support/__init__.py
parent
ec86469c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
Lib/test/support/__init__.py
Lib/test/support/__init__.py
+13
-12
No files found.
Lib/test/support/__init__.py
View file @
47ae763d
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment