Skip to content

Commit d2cf96a

Browse files
committed
Revert "Merge pull request pypa/distutils#345 from Avasam/Explicit-re-exports-of-submodules-in-distutils.command.__all__"
This reverts commit 1d120d9, reversing changes made to 89a42e3. Fix #351 Fix #4902 Fix #4906 Fix #4908
1 parent a75611a commit d2cf96a

File tree

1 file changed

+8
-27
lines changed

1 file changed

+8
-27
lines changed

distutils/command/__init__.py

+8-27
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,21 @@
33
Package containing implementation of all the standard Distutils
44
commands."""
55

6-
from . import (
7-
bdist,
8-
bdist_dumb,
9-
bdist_rpm,
10-
build,
11-
build_clib,
12-
build_ext,
13-
build_py,
14-
build_scripts,
15-
check,
16-
clean,
17-
install,
18-
install_data,
19-
install_headers,
20-
install_lib,
21-
install_scripts,
22-
sdist,
23-
)
24-
256
__all__ = [
26-
'bdist',
27-
'bdist_dumb',
28-
'bdist_rpm',
297
'build',
30-
'build_clib',
31-
'build_ext',
328
'build_py',
9+
'build_ext',
10+
'build_clib',
3311
'build_scripts',
34-
'check',
3512
'clean',
3613
'install',
37-
'install_data',
38-
'install_headers',
3914
'install_lib',
15+
'install_headers',
4016
'install_scripts',
17+
'install_data',
4118
'sdist',
19+
'bdist',
20+
'bdist_dumb',
21+
'bdist_rpm',
22+
'check',
4223
]

0 commit comments

Comments
 (0)