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
332a1461
Commit
332a1461
authored
Jun 04, 2002
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused imports caught by pychecker
parent
cd8a1148
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
5 deletions
+2
-5
Lib/distutils/command/bdist_pkgtool.py
Lib/distutils/command/bdist_pkgtool.py
+0
-2
Lib/distutils/command/bdist_sdux.py
Lib/distutils/command/bdist_sdux.py
+0
-1
Lib/distutils/filelist.py
Lib/distutils/filelist.py
+1
-1
Lib/distutils/unixccompiler.py
Lib/distutils/unixccompiler.py
+1
-1
No files found.
Lib/distutils/command/bdist_pkgtool.py
View file @
332a1461
...
...
@@ -7,7 +7,6 @@ Implements the Distutils 'bdist_pkgtool' command (create Solaris pkgtool
distributions)."""
import
os
,
string
,
sys
,
pwd
,
grp
import
glob
from
types
import
*
from
distutils.core
import
Command
,
DEBUG
from
distutils.util
import
get_platform
...
...
@@ -16,7 +15,6 @@ from distutils.errors import *
from
distutils.command
import
bdist_packager
from
distutils
import
sysconfig
from
distutils
import
log
import
compileall
from
commands
import
getoutput
__revision__
=
"$Id: bdist_pkgtool.py,v 0.3 mwa "
...
...
Lib/distutils/command/bdist_sdux.py
View file @
332a1461
...
...
@@ -7,7 +7,6 @@ swinstall depot"""
__revision__
=
"$Id: bdist_sdux.py,v 0.2 "
import
os
,
string
import
glob
from
types
import
*
from
distutils.core
import
Command
,
DEBUG
from
distutils.util
import
get_platform
...
...
Lib/distutils/filelist.py
View file @
332a1461
...
...
@@ -11,7 +11,7 @@ and building lists of files.
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
import
os
,
string
,
re
import
fnmatch
from
types
import
*
from
glob
import
glob
...
...
Lib/distutils/unixccompiler.py
View file @
332a1461
...
...
@@ -17,7 +17,7 @@ the "typical" Unix-style command-line C compiler:
__revision__
=
"$Id$"
import
string
,
re
,
os
,
sys
import
os
,
sys
from
types
import
*
from
copy
import
copy
from
distutils
import
sysconfig
...
...
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