mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
merge from 3.2 - Fix closes Issue11439 Remove the SVN keywords from the code as it is no longer applicable in hg. Patch Contributed by Neil Muller.
This commit is contained in:
commit
a2250e61db
49 changed files with 2 additions and 98 deletions
|
|
@ -3,8 +3,6 @@
|
|||
Package containing implementation of all the standard Distutils
|
||||
commands."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
__all__ = ['build',
|
||||
'build_py',
|
||||
'build_ext',
|
||||
|
|
|
|||
|
|
@ -3,8 +3,6 @@
|
|||
Implements the Distutils 'bdist' command (create a built [binary]
|
||||
distribution)."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os
|
||||
from distutils.core import Command
|
||||
from distutils.errors import *
|
||||
|
|
|
|||
|
|
@ -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)."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os
|
||||
from distutils.core import Command
|
||||
from distutils.util import get_platform
|
||||
|
|
|
|||
|
|
@ -3,8 +3,6 @@
|
|||
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
|
||||
distributions)."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import sys, os
|
||||
from distutils.core import Command
|
||||
from distutils.debug import DEBUG
|
||||
|
|
|
|||
|
|
@ -3,8 +3,6 @@
|
|||
Implements the Distutils 'bdist_wininst' command: create a windows installer
|
||||
exe-program."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import sys, os
|
||||
from distutils.core import Command
|
||||
from distutils.util import get_platform
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
Implements the Distutils 'build' command."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import sys, os
|
||||
from distutils.core import Command
|
||||
from distutils.errors import DistutilsOptionError
|
||||
|
|
|
|||
|
|
@ -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."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
|
||||
# XXX this module has *lots* of code ripped-off quite transparently from
|
||||
# build_ext.py -- not surprisingly really, as the work required to build
|
||||
|
|
|
|||
|
|
@ -4,8 +4,6 @@ Implements the Distutils 'build_ext' command, for building extension
|
|||
modules (currently limited to C extensions, should accommodate C++
|
||||
extensions ASAP)."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import sys, os, re
|
||||
from distutils.core import Command
|
||||
from distutils.errors import *
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
Implements the Distutils 'build_py' command."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import sys, os
|
||||
import sys
|
||||
from glob import glob
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
Implements the Distutils 'build_scripts' command."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os, re
|
||||
from stat import ST_MODE
|
||||
from distutils import sysconfig
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
Implements the Distutils 'check' command.
|
||||
"""
|
||||
__revision__ = "$Id$"
|
||||
|
||||
from distutils.core import Command
|
||||
from distutils.errors import DistutilsSetupError
|
||||
|
||||
|
|
|
|||
|
|
@ -4,8 +4,6 @@ Implements the Distutils 'clean' command."""
|
|||
|
||||
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os
|
||||
from distutils.core import Command
|
||||
from distutils.dir_util import remove_tree
|
||||
|
|
|
|||
|
|
@ -9,8 +9,6 @@ configure-like tasks: "try to compile this C code", or "figure out where
|
|||
this header file lives".
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import sys, os, re
|
||||
|
||||
from distutils.core import Command
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
Implements the Distutils 'install' command."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import sys
|
||||
import os
|
||||
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@ platform-independent data files."""
|
|||
|
||||
# contributed by Bastian Kleineidam
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os
|
||||
from distutils.core import Command
|
||||
from distutils.util import change_root, convert_path
|
||||
|
|
|
|||
|
|
@ -3,8 +3,6 @@
|
|||
Implements the Distutils 'install_headers' command, to install C/C++ header
|
||||
files to the Python include directory."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
from distutils.core import Command
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -3,8 +3,6 @@
|
|||
Implements the Distutils 'install_lib' command
|
||||
(install all Python modules)."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@ Python scripts."""
|
|||
|
||||
# contributed by Bastian Kleineidam
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os
|
||||
from distutils.core import Command
|
||||
from distutils import log
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@ Implements the Distutils 'register' command (register with the repository).
|
|||
|
||||
# created 2002/10/21, Richard Jones
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os, string, getpass
|
||||
import io
|
||||
import urllib.parse, urllib.request
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
Implements the Distutils 'sdist' command (create a source distribution)."""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os
|
||||
import string
|
||||
import sys
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue