Fix closes Issue11439 Remove the SVN keywords from the code as it is no longer applic...
authorSenthil Kumaran <senthil@uthcode.com>
Thu, 28 Jul 2011 14:32:49 +0000 (22:32 +0800)
committerSenthil Kumaran <senthil@uthcode.com>
Thu, 28 Jul 2011 14:32:49 +0000 (22:32 +0800)
49 files changed:
Lib/curses/__init__.py
Lib/curses/panel.py
Lib/distutils/__init__.py
Lib/distutils/archive_util.py
Lib/distutils/bcppcompiler.py
Lib/distutils/ccompiler.py
Lib/distutils/cmd.py
Lib/distutils/command/__init__.py
Lib/distutils/command/bdist.py
Lib/distutils/command/bdist_dumb.py
Lib/distutils/command/bdist_rpm.py
Lib/distutils/command/bdist_wininst.py
Lib/distutils/command/build.py
Lib/distutils/command/build_clib.py
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_py.py
Lib/distutils/command/build_scripts.py
Lib/distutils/command/check.py
Lib/distutils/command/clean.py
Lib/distutils/command/config.py
Lib/distutils/command/install.py
Lib/distutils/command/install_data.py
Lib/distutils/command/install_headers.py
Lib/distutils/command/install_lib.py
Lib/distutils/command/install_scripts.py
Lib/distutils/command/register.py
Lib/distutils/command/sdist.py
Lib/distutils/core.py
Lib/distutils/cygwinccompiler.py
Lib/distutils/debug.py
Lib/distutils/dep_util.py
Lib/distutils/dir_util.py
Lib/distutils/dist.py
Lib/distutils/emxccompiler.py
Lib/distutils/errors.py
Lib/distutils/extension.py
Lib/distutils/fancy_getopt.py
Lib/distutils/file_util.py
Lib/distutils/filelist.py
Lib/distutils/msvc9compiler.py
Lib/distutils/msvccompiler.py
Lib/distutils/spawn.py
Lib/distutils/sysconfig.py
Lib/distutils/tests/test_archive_util.py
Lib/distutils/text_file.py
Lib/distutils/unixccompiler.py
Lib/distutils/util.py
Lib/tarfile.py
Lib/textwrap.py

index bd7d5f61cf4512c946a0c4e224cde36b03b24a9f..303ea3e791080df3363b112e1322dc86930eb5b8 100644 (file)
@@ -10,8 +10,6 @@ the package, and perhaps a particular module inside it.
 
 """
 
-__revision__ = "$Id$"
-
 from _curses import *
 from curses.wrapper import wrapper
 import os as _os
index aacca85151c09b531f7d1f40afdbd4ae1fc2022d..067afef730a5b65dd5ef971faad848db4d4717fa 100644 (file)
@@ -3,6 +3,4 @@
 Module for using panels with curses.
 """
 
-__revision__ = "$Id$"
-
 from _curses_panel import *
index a470ade93e2f1691cceacc0a284cf692a2f52d0e..c06002eab313fece64c7c9d2372786323a27aba4 100644 (file)
@@ -8,8 +8,6 @@ used from a setup script as
    setup (...)
 """
 
-__revision__ = "$Id$"
-
 # Distutils version
 #
 # Updated automatically by the Python release process.
index c06eba351d8e1cab95882eb909755dcb5971835c..fcda08e20a2740a8702bf97a4f58ec8856781f98 100644 (file)
@@ -3,8 +3,6 @@
 Utility functions for creating archive files (tarballs, zip files,
 that sort of thing)."""
 
-__revision__ = "$Id$"
-
 import os
 from warnings import warn
 import sys
index c5e5cd25714fd62d8232157082681ff0024b9b67..9f4c432d90e77facc2fd74b50aade770ceef9cb0 100644 (file)
@@ -11,8 +11,6 @@ for the Borland C++ compiler.
 # someone should sit down and factor out the common code as
 # WindowsCCompiler!  --GPW
 
-__revision__ = "$Id$"
-
 
 import os
 from distutils.errors import \
index 291c008f2058a0785412a99eedc3ababc8c010b8..c795c958fecf6ce174f7bec92a208f87b41171ad 100644 (file)
@@ -3,8 +3,6 @@
 Contains CCompiler, an abstract base class that defines the interface
 for the Distutils compiler abstraction model."""
 
-__revision__ = "$Id$"
-
 import sys, os, re
 from distutils.errors import *
 from distutils.spawn import spawn
index 5b1d085c327edcf286780c1ccc9f6e52bf8fbc2e..3ea08101acbfe418f7846f98d76276922e2667aa 100644 (file)
@@ -4,8 +4,6 @@ Provides the Command class, the base class for the command classes
 in the distutils.command package.
 """
 
-__revision__ = "$Id$"
-
 import sys, os, re
 from distutils.errors import DistutilsOptionError
 from distutils import util, dir_util, file_util, archive_util, dep_util
index c379edbed062f901a9d1bb2bec9455d511f308bf..481eea9fd4b5a5ca67e75bc9d3b3effe6ce29194 100644 (file)
@@ -3,8 +3,6 @@
 Package containing implementation of all the standard Distutils
 commands."""
 
-__revision__ = "$Id$"
-
 __all__ = ['build',
            'build_py',
            'build_ext',
index 1a360b59e319320018ee93c6ece378025a0a8322..c5188eb3719fea272d8a36d95062bde303c533e0 100644 (file)
@@ -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 *
index 2d39922672c59c65ed37461b183a61c31b499464..170e8894616edec1397f22251f873214fc9a12d5 100644 (file)
@@ -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
index e2ae877d9a3c7237ffd904314f0aa94c8dd5c65d..678e1188966f603d9a7504f29bdbf471395ec447 100644 (file)
@@ -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
index b2e2fc6dc8ec9d33cde57b9a0baf6b8eb67c56d6..b7916e31a1e5fe348128aa18016838399bf7cfe4 100644 (file)
@@ -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
index 9c2667cfd2576cda705e9ce0bec234d63779d486..cfc15cf0ddc5329510c2a1bc72b8445a32f52d2f 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'build' command."""
 
-__revision__ = "$Id$"
-
 import sys, os
 from distutils.core import Command
 from distutils.errors import DistutilsOptionError
index 428011a64dce5b2150ac7dde4a2438cd2f35648b..3e20ef23cd81e0d4fb54898f2b642882d3d0d5ef 100644 (file)
@@ -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
index fb3164895190678442a6179d0d1be2cacf1b12b5..8d843d689fdbdebd54a725c3690e9923d3737082 100644 (file)
@@ -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 *
index 26002e4b3fbb3277fb7ee697ec2077aa05c26797..3868c12f5b7dad9f85985e7afbcf9755c636e043 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'build_py' command."""
 
-__revision__ = "$Id$"
-
 import sys, os
 import sys
 from glob import glob
index a43a7c306a0c7c86d45d7a1edaeef06f9a0b6a8d..ec434770610b00c3211687dc8d3a747644fdf855 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'build_scripts' command."""
 
-__revision__ = "$Id$"
-
 import os, re
 from stat import ST_MODE
 from distutils import sysconfig
index 2657c696e5365f2caa6fced708f00b83287fb025..b67c79530878e06e05c5d0255782a33d679a56a4 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'check' command.
 """
-__revision__ = "$Id$"
-
 from distutils.core import Command
 from distutils.errors import DistutilsSetupError
 
index ae1d22c376f944c965efd4751601b7452d16846a..0cb270166211fe2b24b6ec636f632a77a5ca6b8f 100644 (file)
@@ -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
index ac80a54eb1ab582ee39944e0dc20bc22b019c917..847e8581605b16af2eebfb0d78edcbf652b141e7 100644 (file)
@@ -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
index bdc3a09b2290a2e4ee68a83c5ca0994982f1c1d8..0161898f49a3ee5612be5ddc00ac6dc43d2f5e29 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'install' command."""
 
-__revision__ = "$Id$"
-
 import sys
 import os
 
index ab40797b9866537d9aba9029ed52ecc6cf66bee0..947cd76a99e5fdde049b2b6b713ba273ea4309d5 100644 (file)
@@ -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
index 38125b55135c2f6ea32f9e6acfa8459c37c11abf..9bb0b18dc0d809dbc03d9ca355818b3bb0af573b 100644 (file)
@@ -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
 
 
index 6022d30f278e7484967659c1cc63afe317314b74..3d01d07115682690479571d74b539e9c301458c0 100644 (file)
@@ -3,8 +3,6 @@
 Implements the Distutils 'install_lib' command
 (install all Python modules)."""
 
-__revision__ = "$Id$"
-
 import os
 import sys
 
index ea8d5aa65410bf78408c2eb77bb11e86f3177ad5..31a1130ee549371dffc668e515d2ae5d91799aac 100644 (file)
@@ -5,8 +5,6 @@ Python scripts."""
 
 # contributed by Bastian Kleineidam
 
-__revision__ = "$Id$"
-
 import os
 from distutils.core import Command
 from distutils import log
index bdf5f8f09ccd85074326ad254427883badcbf899..99545affa4a8ce470444d5ab9f757bab25c71c7a 100644 (file)
@@ -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
index fdbebd7e0fc451accbe58bf28be1f958dea7a5f5..48cb26b6ae4143a9a3707d48b629257af2d0540d 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'sdist' command (create a source distribution)."""
 
-__revision__ = "$Id$"
-
 import os
 import string
 import sys
index c0a04de3af04cb13c7f049ce10e58f2d53d3218d..260332a2ac69b2cd81c7deae7e496d5c0d5a524f 100644 (file)
@@ -6,8 +6,6 @@ indirectly provides the Distribution and Command classes, although they are
 really defined in distutils.dist and distutils.cmd.
 """
 
-__revision__ = "$Id$"
-
 import os
 import sys
 
index 536aa6b61b269c83d45fa49872f583f484c49d9a..819e1a97be324b8dc01a886c826b74def384fe59 100644 (file)
@@ -45,8 +45,6 @@ cygwin in no-cygwin mode).
 # * mingw gcc 3.2/ld 2.13 works
 #   (ld supports -shared)
 
-__revision__ = "$Id$"
-
 import os
 import sys
 import copy
index 2886744402e1b5c219f5bbfcc5aab32418632e86..daf1660f0d821143e388d37532a39ddfd2ca0347 100644 (file)
@@ -1,7 +1,5 @@
 import os
 
-__revision__ = "$Id$"
-
 # If DISTUTILS_DEBUG is anything other than the empty string, we run in
 # debug mode.
 DEBUG = os.environ.get('DISTUTILS_DEBUG')
index 07b3549c6fe8da6a435cbbdebfdfa974085eb286..d74f5e4e92f3edeb5a2868ac049973eef7b245cb 100644 (file)
@@ -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."""
 
-__revision__ = "$Id$"
-
 import os
 from distutils.errors import DistutilsFileError
 
index 5b005f0865e466cb6921a5f5414809c97d030fb9..30daf49a6ea89d67b0f84c3e4f3d81713d78e635 100644 (file)
@@ -2,8 +2,6 @@
 
 Utility functions for manipulating directories and directory trees."""
 
-__revision__ = "$Id$"
-
 import os, sys
 import errno
 from distutils.errors import DistutilsFileError, DistutilsInternalError
index 01f1f1cfc061cf45c0c1bad4bf7667f87c3eeeb4..02cd79ba2f61ec46c1520c707baff83aab236141 100644 (file)
@@ -4,8 +4,6 @@ Provides the Distribution class, which represents the module distribution
 being built/installed/distributed.
 """
 
-__revision__ = "$Id$"
-
 import sys, os, re
 
 try:
index 16dce53524e0c21f4f0522689256310e28339253..3675f8df9c8255076685d9e60e937c17d7f38b4a 100644 (file)
@@ -19,8 +19,6 @@ handles the EMX port of the GNU C compiler to OS/2.
 #
 # * EMX gcc 2.81/EMX 0.9d fix03
 
-__revision__ = "$Id$"
-
 import os,sys,copy
 from distutils.ccompiler import gen_preprocess_options, gen_lib_options
 from distutils.unixccompiler import UnixCCompiler
index acecacccb5641e92f4fcef936e212fee0ec6d0ca..eb13c983e9288b6ad9b02742ebacd5629a7bd742 100644 (file)
@@ -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"."""
 
-__revision__ = "$Id$"
-
 class DistutilsError (Exception):
     """The root of all Distutils evil."""
     pass
index 2d1c36bd5c64e078ecd132109d139f8e9ff86172..a93655af2cf8c8a71a4768d600cc1b0b872044e7 100644 (file)
@@ -3,8 +3,6 @@
 Provides the Extension class, used to describe C/C++ extension
 modules in setup scripts."""
 
-__revision__ = "$Id$"
-
 import os
 import sys
 import warnings
index 879d4d25bf4db0ed8e581a666b3c258f93e4e0d9..7d170dd27731a5c0d3065e017a061b8c3607e982 100644 (file)
@@ -8,8 +8,6 @@ additional features:
   * options set attributes of a passed-in object
 """
 
-__revision__ = "$Id$"
-
 import sys, string, re
 import getopt
 from distutils.errors import *
index e1eb93292677dec187c2818bc3462f1d674c6658..9bdd14e42e38066f3e827dc99c7f8c7e12a808ef 100644 (file)
@@ -3,8 +3,6 @@
 Utility functions for operating on single files.
 """
 
-__revision__ = "$Id$"
-
 import os
 from distutils.errors import DistutilsFileError
 from distutils import log
index 06a8da9a0770ba2ea04c29a0b96d67df4a40e58b..a94b5c8e9651cc8ab722e23b9f054080bb85663b 100644 (file)
@@ -4,8 +4,6 @@ Provides the FileList class, used for poking about the filesystem
 and building lists of files.
 """
 
-__revision__ = "$Id$"
-
 import os, re
 import fnmatch
 from distutils.util import convert_path
index e849e16d51847a346670d07af2621cc1070f5659..0cddb5c8e0efd7fd74d87867deed34413eeb1b54 100644 (file)
@@ -12,8 +12,6 @@ for older versions of VS in distutils.msvccompiler.
 #   finding DevStudio (through the registry)
 # ported to VS2005 and VS 2008 by Christian Heimes
 
-__revision__ = "$Id$"
-
 import os
 import subprocess
 import sys
index 1cd0f91d5f970feab24ebcc06c144ac9f129cbf1..81166569619b6fca7d0afcb8860c8bf78ea56fb9 100644 (file)
@@ -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)
 
-__revision__ = "$Id$"
-
 import sys, os
 from distutils.errors import \
      DistutilsExecError, DistutilsPlatformError, \
index 2b62c968a424c74efaa4b0b34e385bf80e4ec74a..f58c55f90241d04ffdc79b9d7ebed38b1068e1bb 100644 (file)
@@ -6,8 +6,6 @@ Also provides the 'find_executable()' to search the path for a given
 executable name.
 """
 
-__revision__ = "$Id$"
-
 import sys
 import os
 
index 9d7d1902aa6bb4d1a162fca45f8860bd53eb9851..5ea724c096020e2e2f0b446e91a9e4200f461ca9 100644 (file)
@@ -9,8 +9,6 @@ Written by:   Fred L. Drake, Jr.
 Email:        <fdrake@acm.org>
 """
 
-__revision__ = "$Id$"
-
 import os
 import re
 import sys
index f96984959035b614123a79a2691ab20a76bdcd7b..8edfab49f87725f519cf0d5e0806581c26d74545 100644 (file)
@@ -1,6 +1,4 @@
 """Tests for distutils.archive_util."""
-__revision__ = "$Id$"
-
 import unittest
 import os
 import tarfile
index 454725c626da9f049a3c574cc1929acd7454e1c9..40b8484a685d153a7c20f04fc3bcb6a1adb2b3f3 100644 (file)
@@ -4,8 +4,6 @@ provides the TextFile class, which gives an interface to text files
 that (optionally) takes care of stripping comments, ignoring blank
 lines, and joining lines with backslashes."""
 
-__revision__ = "$Id$"
-
 import sys, os, io
 
 
index bf734161544f3b5d6c275c5e086642b22fb2d553..c70a3cc555cbf2397f49d6edc1632f6866afddae 100644 (file)
@@ -13,8 +13,6 @@ the "typical" Unix-style command-line C compiler:
   * link shared library handled by 'cc -shared'
 """
 
-__revision__ = "$Id$"
-
 import os, sys, re
 
 from distutils import sysconfig
index d6f89d65e5075a441273239709cf9ecfeb0ab7f1..023ddffc828d6ac3758c16a24c23a9171bad21cd 100644 (file)
@@ -4,8 +4,6 @@ Miscellaneous utility functions -- anything that doesn't fit into
 one of the other *util.py modules.
 """
 
-__revision__ = "$Id$"
-
 import sys, os, string, re
 from distutils.errors import DistutilsPlatformError
 from distutils.dep_util import newer
index 0f9d1dade180239aabdd570db363eb6500bfe830..63c7554af20d0d3132cf6dae29ddc87a33f77c9c 100644 (file)
@@ -33,8 +33,8 @@ __version__ = "$Revision$"
 
 version     = "0.9.0"
 __author__  = "Lars Gust\u00e4bel (lars@gustaebel.de)"
-__date__    = "$Date$"
-__cvsid__   = "$Id$"
+__date__    = "$Date: 2011-02-25 17:42:01 +0200 (Fri, 25 Feb 2011) $"
+__cvsid__   = "$Id: tarfile.py 88586 2011-02-25 15:42:01Z marc-andre.lemburg $"
 __credits__ = "Gustavo Niemeyer, Niels Gust\u00e4bel, Richard Townsend."
 
 #---------
index f4886a12779c54368157c57adf47a36bd28eaa2e..dfb400548bd4d77723e25bad9eb73a0f597d46b3 100644 (file)
@@ -5,8 +5,6 @@
 # Copyright (C) 2002, 2003 Python Software Foundation.
 # Written by Greg Ward <gward@python.net>
 
-__revision__ = "$Id$"
-
 import string, re
 
 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']