Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
d404801c
Commit
d404801c
authored
Jan 25, 2009
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #5052: removed backward compatibility information (out of date)
parent
31b6b08a
Changes
36
Hide whitespace changes
Inline
Side-by-side
Showing
36 changed files
with
0 additions
and
72 deletions
+0
-72
__init__.py
__init__.py
+0
-2
archive_util.py
archive_util.py
+0
-2
bcppcompiler.py
bcppcompiler.py
+0
-2
ccompiler.py
ccompiler.py
+0
-2
cmd.py
cmd.py
+0
-2
command/__init__.py
command/__init__.py
+0
-2
command/bdist.py
command/bdist.py
+0
-2
command/bdist_dumb.py
command/bdist_dumb.py
+0
-2
command/bdist_rpm.py
command/bdist_rpm.py
+0
-2
command/bdist_wininst.py
command/bdist_wininst.py
+0
-2
command/build.py
command/build.py
+0
-2
command/build_clib.py
command/build_clib.py
+0
-2
command/build_ext.py
command/build_ext.py
+0
-2
command/build_py.py
command/build_py.py
+0
-2
command/build_scripts.py
command/build_scripts.py
+0
-2
command/clean.py
command/clean.py
+0
-2
command/config.py
command/config.py
+0
-2
command/install.py
command/install.py
+0
-2
command/install_data.py
command/install_data.py
+0
-2
command/install_headers.py
command/install_headers.py
+0
-2
command/install_lib.py
command/install_lib.py
+0
-2
command/install_scripts.py
command/install_scripts.py
+0
-2
command/sdist.py
command/sdist.py
+0
-2
core.py
core.py
+0
-2
cygwinccompiler.py
cygwinccompiler.py
+0
-2
debug.py
debug.py
+0
-2
dep_util.py
dep_util.py
+0
-2
dir_util.py
dir_util.py
+0
-2
dist.py
dist.py
+0
-2
errors.py
errors.py
+0
-2
fancy_getopt.py
fancy_getopt.py
+0
-2
file_util.py
file_util.py
+0
-2
filelist.py
filelist.py
+0
-2
log.py
log.py
+0
-2
msvccompiler.py
msvccompiler.py
+0
-2
spawn.py
spawn.py
+0
-2
No files found.
__init__.py
View file @
d404801c
...
...
@@ -8,8 +8,6 @@ used from a setup script as
setup (...)
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
# Distutils version
...
...
archive_util.py
View file @
d404801c
...
...
@@ -3,8 +3,6 @@
Utility functions for creating archive files (tarballs, zip files,
that sort of thing)."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
bcppcompiler.py
View file @
d404801c
...
...
@@ -11,8 +11,6 @@ for the Borland C++ compiler.
# someone should sit down and factor out the common code as
# WindowsCCompiler! --GPW
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
...
...
ccompiler.py
View file @
d404801c
...
...
@@ -3,8 +3,6 @@
Contains CCompiler, an abstract base class that defines the interface
for the Distutils compiler abstraction model."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
re
...
...
cmd.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Provides the Command class, the base class for the command classes
in the distutils.command package.
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
command/__init__.py
View file @
d404801c
...
...
@@ -3,8 +3,6 @@
Package containing implementation of all the standard Distutils
commands."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
__all__
=
[
'build'
,
...
...
command/bdist.py
View file @
d404801c
...
...
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist' command (create a built [binary]
distribution)."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
command/bdist_dumb.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Implements the Distutils 'bdist_dumb' command (create a "dumb" built
distribution -- i.e., just an archive to be unpacked under $prefix or
$exec_prefix)."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
command/bdist_rpm.py
View file @
d404801c
...
...
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
distributions)."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
command/bdist_wininst.py
View file @
d404801c
...
...
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist_wininst' command: create a windows installer
exe-program."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
command/build.py
View file @
d404801c
...
...
@@ -2,8 +2,6 @@
Implements the Distutils 'build' command."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
...
...
command/build_clib.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Implements the Distutils 'build_clib' command, to build a C/C++ library
that is included in the module distribution and needed by an extension
module."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
...
...
command/build_ext.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Implements the Distutils 'build_ext' command, for building extension
modules (currently limited to C extensions, should accommodate C++
extensions ASAP)."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
command/build_py.py
View file @
d404801c
...
...
@@ -2,8 +2,6 @@
Implements the Distutils 'build_py' command."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
string
,
os
...
...
command/build_scripts.py
View file @
d404801c
...
...
@@ -2,8 +2,6 @@
Implements the Distutils 'build_scripts' command."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
,
re
...
...
command/clean.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Implements the Distutils 'clean' command."""
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
command/config.py
View file @
d404801c
...
...
@@ -9,8 +9,6 @@ configure-like tasks: "try to compile this C code", or "figure out where
this header file lives".
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
command/install.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Implements the Distutils 'install' command."""
from
distutils
import
log
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
command/install_data.py
View file @
d404801c
...
...
@@ -5,8 +5,6 @@ platform-independent data files."""
# contributed by Bastian Kleineidam
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
command/install_headers.py
View file @
d404801c
...
...
@@ -3,8 +3,6 @@
Implements the Distutils 'install_headers' command, to install C/C++ header
files to the Python include directory."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
from
distutils.core
import
Command
...
...
command/install_lib.py
View file @
d404801c
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
command/install_scripts.py
View file @
d404801c
...
...
@@ -5,8 +5,6 @@ Python scripts."""
# contributed by Bastian Kleineidam
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
command/sdist.py
View file @
d404801c
...
...
@@ -2,8 +2,6 @@
Implements the Distutils 'sdist' command (create a source distribution)."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
,
string
...
...
core.py
View file @
d404801c
...
...
@@ -6,8 +6,6 @@ indirectly provides the Distribution and Command classes, although they are
really defined in distutils.dist and distutils.cmd.
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
...
...
cygwinccompiler.py
View file @
d404801c
...
...
@@ -45,8 +45,6 @@ cygwin in no-cygwin mode).
# * mingw gcc 3.2/ld 2.13 works
# (ld supports -shared)
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
,
sys
,
copy
...
...
debug.py
View file @
d404801c
import
os
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
# If DISTUTILS_DEBUG is anything other than the empty string, we run in
...
...
dep_util.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Utility functions for simple, timestamp-based dependency of files
and groups of files; also, function based entirely on such
timestamp dependency analysis."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
dir_util.py
View file @
d404801c
...
...
@@ -2,8 +2,6 @@
Utility functions for manipulating directories and directory trees."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
,
sys
...
...
dist.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Provides the Distribution class, which represents the module distribution
being built/installed/distributed.
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
errors.py
View file @
d404801c
...
...
@@ -8,8 +8,6 @@ usually raised for errors that are obviously the end-user's fault
This module is safe to use in "from ... import *" mode; it only exports
symbols whose names start with "Distutils" and end with "Error"."""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
class
DistutilsError
(
Exception
):
...
...
fancy_getopt.py
View file @
d404801c
...
...
@@ -8,8 +8,6 @@ additional features:
* options set attributes of a passed-in object
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
string
,
re
...
...
file_util.py
View file @
d404801c
...
...
@@ -3,8 +3,6 @@
Utility functions for operating on single files.
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
...
...
filelist.py
View file @
d404801c
...
...
@@ -4,8 +4,6 @@ Provides the FileList class, used for poking about the filesystem
and building lists of files.
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
os
,
string
,
re
...
...
log.py
View file @
d404801c
"""A simple log mechanism styled after PEP 282."""
# This module should be kept compatible with Python 2.1.
# The class here is styled after PEP 282 so that it could later be
# replaced with a standard Python logging implementation.
...
...
msvccompiler.py
View file @
d404801c
...
...
@@ -8,8 +8,6 @@ for the Microsoft Visual Studio.
# hacked by Robin Becker and Thomas Heller to do a better job of
# finding DevStudio (through the registry)
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
spawn.py
View file @
d404801c
...
...
@@ -6,8 +6,6 @@ Also provides the 'find_executable()' to search the path for a given
executable name.
"""
# This module should be kept compatible with Python 2.1.
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
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