diff -r e38bb637328c Lib/curses/__init__.py --- a/Lib/curses/__init__.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/curses/__init__.py Tue Jul 05 12:43:26 2011 +0200 @@ -10,8 +10,6 @@ """ -__revision__ = "$Id$" - from _curses import * import os as _os import sys as _sys diff -r e38bb637328c Lib/curses/panel.py --- a/Lib/curses/panel.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/curses/panel.py Tue Jul 05 12:43:26 2011 +0200 @@ -3,6 +3,4 @@ Module for using panels with curses. """ -__revision__ = "$Id$" - from _curses_panel import * diff -r e38bb637328c Lib/distutils/__init__.py --- a/Lib/distutils/__init__.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/__init__.py Tue Jul 05 12:43:26 2011 +0200 @@ -8,8 +8,6 @@ setup (...) """ -__revision__ = "$Id$" - # Distutils version # # Updated automatically by the Python release process. diff -r e38bb637328c Lib/distutils/archive_util.py --- a/Lib/distutils/archive_util.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/archive_util.py Tue Jul 05 12:43:26 2011 +0200 @@ -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 diff -r e38bb637328c Lib/distutils/bcppcompiler.py --- a/Lib/distutils/bcppcompiler.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/bcppcompiler.py Tue Jul 05 12:43:26 2011 +0200 @@ -11,8 +11,6 @@ # someone should sit down and factor out the common code as # WindowsCCompiler! --GPW -__revision__ = "$Id$" - import os from distutils.errors import \ diff -r e38bb637328c Lib/distutils/ccompiler.py --- a/Lib/distutils/ccompiler.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/ccompiler.py Tue Jul 05 12:43:26 2011 +0200 @@ -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 diff -r e38bb637328c Lib/distutils/cmd.py --- a/Lib/distutils/cmd.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/cmd.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ 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 diff -r e38bb637328c Lib/distutils/command/__init__.py --- a/Lib/distutils/command/__init__.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/__init__.py Tue Jul 05 12:43:26 2011 +0200 @@ -3,8 +3,6 @@ Package containing implementation of all the standard Distutils commands.""" -__revision__ = "$Id$" - __all__ = ['build', 'build_py', 'build_ext', diff -r e38bb637328c Lib/distutils/command/bdist.py --- a/Lib/distutils/command/bdist.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/bdist.py Tue Jul 05 12:43:26 2011 +0200 @@ -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 * diff -r e38bb637328c Lib/distutils/command/bdist_dumb.py --- a/Lib/distutils/command/bdist_dumb.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/bdist_dumb.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ 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 diff -r e38bb637328c Lib/distutils/command/bdist_rpm.py --- a/Lib/distutils/command/bdist_rpm.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/bdist_rpm.py Tue Jul 05 12:43:26 2011 +0200 @@ -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 diff -r e38bb637328c Lib/distutils/command/bdist_wininst.py --- a/Lib/distutils/command/bdist_wininst.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/bdist_wininst.py Tue Jul 05 12:43:26 2011 +0200 @@ -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 diff -r e38bb637328c Lib/distutils/command/build.py --- a/Lib/distutils/command/build.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/build.py Tue Jul 05 12:43:26 2011 +0200 @@ -2,8 +2,6 @@ Implements the Distutils 'build' command.""" -__revision__ = "$Id$" - import sys, os from distutils.core import Command from distutils.errors import DistutilsOptionError diff -r e38bb637328c Lib/distutils/command/build_clib.py --- a/Lib/distutils/command/build_clib.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/build_clib.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ 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 diff -r e38bb637328c Lib/distutils/command/build_ext.py --- a/Lib/distutils/command/build_ext.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/build_ext.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ 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 * diff -r e38bb637328c Lib/distutils/command/build_py.py --- a/Lib/distutils/command/build_py.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/build_py.py Tue Jul 05 12:43:26 2011 +0200 @@ -2,8 +2,6 @@ Implements the Distutils 'build_py' command.""" -__revision__ = "$Id$" - import sys, os import sys from glob import glob diff -r e38bb637328c Lib/distutils/command/build_scripts.py --- a/Lib/distutils/command/build_scripts.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/build_scripts.py Tue Jul 05 12:43:26 2011 +0200 @@ -2,8 +2,6 @@ Implements the Distutils 'build_scripts' command.""" -__revision__ = "$Id$" - import os, re from stat import ST_MODE from distutils import sysconfig diff -r e38bb637328c Lib/distutils/command/check.py --- a/Lib/distutils/command/check.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/check.py Tue Jul 05 12:43:26 2011 +0200 @@ -2,8 +2,6 @@ Implements the Distutils 'check' command. """ -__revision__ = "$Id$" - from distutils.core import Command from distutils.errors import DistutilsSetupError diff -r e38bb637328c Lib/distutils/command/clean.py --- a/Lib/distutils/command/clean.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/clean.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ # contributed by Bastian Kleineidam , added 2000-03-18 -__revision__ = "$Id$" - import os from distutils.core import Command from distutils.dir_util import remove_tree diff -r e38bb637328c Lib/distutils/command/config.py --- a/Lib/distutils/command/config.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/config.py Tue Jul 05 12:43:26 2011 +0200 @@ -9,8 +9,6 @@ this header file lives". """ -__revision__ = "$Id$" - import sys, os, re from distutils.core import Command diff -r e38bb637328c Lib/distutils/command/install.py --- a/Lib/distutils/command/install.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/install.py Tue Jul 05 12:43:26 2011 +0200 @@ -2,8 +2,6 @@ Implements the Distutils 'install' command.""" -__revision__ = "$Id$" - import sys import os diff -r e38bb637328c Lib/distutils/command/install_data.py --- a/Lib/distutils/command/install_data.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/install_data.py Tue Jul 05 12:43:26 2011 +0200 @@ -5,8 +5,6 @@ # contributed by Bastian Kleineidam -__revision__ = "$Id$" - import os from distutils.core import Command from distutils.util import change_root, convert_path diff -r e38bb637328c Lib/distutils/command/install_headers.py --- a/Lib/distutils/command/install_headers.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/install_headers.py Tue Jul 05 12:43:26 2011 +0200 @@ -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 diff -r e38bb637328c Lib/distutils/command/install_lib.py --- a/Lib/distutils/command/install_lib.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/install_lib.py Tue Jul 05 12:43:26 2011 +0200 @@ -3,8 +3,6 @@ Implements the Distutils 'install_lib' command (install all Python modules).""" -__revision__ = "$Id$" - import os import sys diff -r e38bb637328c Lib/distutils/command/install_scripts.py --- a/Lib/distutils/command/install_scripts.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/install_scripts.py Tue Jul 05 12:43:26 2011 +0200 @@ -5,8 +5,6 @@ # contributed by Bastian Kleineidam -__revision__ = "$Id$" - import os from distutils.core import Command from distutils import log diff -r e38bb637328c Lib/distutils/command/register.py --- a/Lib/distutils/command/register.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/register.py Tue Jul 05 12:43:26 2011 +0200 @@ -5,8 +5,6 @@ # created 2002/10/21, Richard Jones -__revision__ = "$Id$" - import os, string, getpass import io import urllib.parse, urllib.request diff -r e38bb637328c Lib/distutils/command/sdist.py --- a/Lib/distutils/command/sdist.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/command/sdist.py Tue Jul 05 12:43:26 2011 +0200 @@ -2,8 +2,6 @@ Implements the Distutils 'sdist' command (create a source distribution).""" -__revision__ = "$Id$" - import os import string import sys diff -r e38bb637328c Lib/distutils/core.py --- a/Lib/distutils/core.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/core.py Tue Jul 05 12:43:26 2011 +0200 @@ -6,8 +6,6 @@ really defined in distutils.dist and distutils.cmd. """ -__revision__ = "$Id$" - import os import sys diff -r e38bb637328c Lib/distutils/cygwinccompiler.py --- a/Lib/distutils/cygwinccompiler.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/cygwinccompiler.py Tue Jul 05 12:43:26 2011 +0200 @@ -45,8 +45,6 @@ # * mingw gcc 3.2/ld 2.13 works # (ld supports -shared) -__revision__ = "$Id$" - import os import sys import copy diff -r e38bb637328c Lib/distutils/debug.py --- a/Lib/distutils/debug.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/debug.py Tue Jul 05 12:43:26 2011 +0200 @@ -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') diff -r e38bb637328c Lib/distutils/dep_util.py --- a/Lib/distutils/dep_util.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/dep_util.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ and groups of files; also, function based entirely on such timestamp dependency analysis.""" -__revision__ = "$Id$" - import os from distutils.errors import DistutilsFileError diff -r e38bb637328c Lib/distutils/dir_util.py --- a/Lib/distutils/dir_util.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/dir_util.py Tue Jul 05 12:43:26 2011 +0200 @@ -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 diff -r e38bb637328c Lib/distutils/dist.py --- a/Lib/distutils/dist.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/dist.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ being built/installed/distributed. """ -__revision__ = "$Id$" - import sys, os, re try: diff -r e38bb637328c Lib/distutils/emxccompiler.py --- a/Lib/distutils/emxccompiler.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/emxccompiler.py Tue Jul 05 12:43:26 2011 +0200 @@ -19,8 +19,6 @@ # # * 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 diff -r e38bb637328c Lib/distutils/errors.py --- a/Lib/distutils/errors.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/errors.py Tue Jul 05 12:43:26 2011 +0200 @@ -8,8 +8,6 @@ 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 diff -r e38bb637328c Lib/distutils/extension.py --- a/Lib/distutils/extension.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/extension.py Tue Jul 05 12:43:26 2011 +0200 @@ -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 diff -r e38bb637328c Lib/distutils/fancy_getopt.py --- a/Lib/distutils/fancy_getopt.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/fancy_getopt.py Tue Jul 05 12:43:26 2011 +0200 @@ -8,8 +8,6 @@ * options set attributes of a passed-in object """ -__revision__ = "$Id$" - import sys, string, re import getopt from distutils.errors import * diff -r e38bb637328c Lib/distutils/file_util.py --- a/Lib/distutils/file_util.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/file_util.py Tue Jul 05 12:43:26 2011 +0200 @@ -3,8 +3,6 @@ Utility functions for operating on single files. """ -__revision__ = "$Id$" - import os from distutils.errors import DistutilsFileError from distutils import log diff -r e38bb637328c Lib/distutils/filelist.py --- a/Lib/distutils/filelist.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/filelist.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ and building lists of files. """ -__revision__ = "$Id$" - import os, re import fnmatch from distutils.util import convert_path diff -r e38bb637328c Lib/distutils/msvc9compiler.py --- a/Lib/distutils/msvc9compiler.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/msvc9compiler.py Tue Jul 05 12:43:26 2011 +0200 @@ -12,8 +12,6 @@ # finding DevStudio (through the registry) # ported to VS2005 and VS 2008 by Christian Heimes -__revision__ = "$Id$" - import os import subprocess import sys diff -r e38bb637328c Lib/distutils/msvccompiler.py --- a/Lib/distutils/msvccompiler.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/msvccompiler.py Tue Jul 05 12:43:26 2011 +0200 @@ -8,8 +8,6 @@ # 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, \ diff -r e38bb637328c Lib/distutils/spawn.py --- a/Lib/distutils/spawn.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/spawn.py Tue Jul 05 12:43:26 2011 +0200 @@ -6,8 +6,6 @@ executable name. """ -__revision__ = "$Id$" - import sys import os diff -r e38bb637328c Lib/distutils/sysconfig.py --- a/Lib/distutils/sysconfig.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/sysconfig.py Tue Jul 05 12:43:26 2011 +0200 @@ -9,8 +9,6 @@ Email: """ -__revision__ = "$Id$" - import os import re import sys diff -r e38bb637328c Lib/distutils/tests/test_archive_util.py --- a/Lib/distutils/tests/test_archive_util.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/tests/test_archive_util.py Tue Jul 05 12:43:26 2011 +0200 @@ -1,6 +1,4 @@ """Tests for distutils.archive_util.""" -__revision__ = "$Id$" - import unittest import os import tarfile diff -r e38bb637328c Lib/distutils/text_file.py --- a/Lib/distutils/text_file.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/text_file.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ that (optionally) takes care of stripping comments, ignoring blank lines, and joining lines with backslashes.""" -__revision__ = "$Id$" - import sys, os, io diff -r e38bb637328c Lib/distutils/unixccompiler.py --- a/Lib/distutils/unixccompiler.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/unixccompiler.py Tue Jul 05 12:43:26 2011 +0200 @@ -13,8 +13,6 @@ * link shared library handled by 'cc -shared' """ -__revision__ = "$Id$" - import os, sys, re from distutils import sysconfig diff -r e38bb637328c Lib/distutils/util.py --- a/Lib/distutils/util.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/distutils/util.py Tue Jul 05 12:43:26 2011 +0200 @@ -4,8 +4,6 @@ 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 diff -r e38bb637328c Lib/tarfile.py --- a/Lib/tarfile.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/tarfile.py Tue Jul 05 12:43:26 2011 +0200 @@ -31,8 +31,8 @@ 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." #--------- diff -r e38bb637328c Lib/textwrap.py --- a/Lib/textwrap.py Mon Jul 04 22:28:00 2011 -0500 +++ b/Lib/textwrap.py Tue Jul 05 12:43:26 2011 +0200 @@ -5,8 +5,6 @@ # Copyright (C) 2002, 2003 Python Software Foundation. # Written by Greg Ward -__revision__ = "$Id$" - import re __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']