summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-11-14 02:25:42 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2002-11-14 02:25:42 (GMT)
commita6483d2e9a9d9a69e9823217bf6b6334bb0f0066 (patch)
tree167efda72ed74e9e8fa3d15f3e9383523adc0284 /Lib/distutils/command
parentef6795613915a7ee01509d6ff2049ebf13763772 (diff)
downloadcpython-a6483d2e9a9d9a69e9823217bf6b6334bb0f0066.zip
cpython-a6483d2e9a9d9a69e9823217bf6b6334bb0f0066.tar.gz
cpython-a6483d2e9a9d9a69e9823217bf6b6334bb0f0066.tar.bz2
Remove 'created by' lines; people can use CVS for this, and the information is often out of date
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/bdist.py2
-rw-r--r--Lib/distutils/command/bdist_dumb.py2
-rw-r--r--Lib/distutils/command/bdist_rpm.py2
-rw-r--r--Lib/distutils/command/bdist_wininst.py2
-rw-r--r--Lib/distutils/command/build.py2
-rw-r--r--Lib/distutils/command/build_clib.py3
-rw-r--r--Lib/distutils/command/build_ext.py2
-rw-r--r--Lib/distutils/command/build_py.py2
-rw-r--r--Lib/distutils/command/build_scripts.py2
-rw-r--r--Lib/distutils/command/config.py2
-rw-r--r--Lib/distutils/command/install.py2
-rw-r--r--Lib/distutils/command/install_headers.py2
-rw-r--r--Lib/distutils/command/install_lib.py2
-rw-r--r--Lib/distutils/command/sdist.py2
14 files changed, 0 insertions, 29 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py
index 454c9df..e0648f3 100644
--- a/Lib/distutils/command/bdist.py
+++ b/Lib/distutils/command/bdist.py
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist' command (create a built [binary]
distribution)."""
-# created 2000/03/29, Greg Ward
-
__revision__ = "$Id$"
import os, string
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py
index 712fec8..7562b70 100644
--- a/Lib/distutils/command/bdist_dumb.py
+++ b/Lib/distutils/command/bdist_dumb.py
@@ -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)."""
-# created 2000/03/29, Greg Ward
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py
index 88be5e8..a7bc45f 100644
--- a/Lib/distutils/command/bdist_rpm.py
+++ b/Lib/distutils/command/bdist_rpm.py
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
distributions)."""
-# created 2000/04/25, by Harry Henry Gebel
-
__revision__ = "$Id$"
import sys, os, string
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
index dcc390e..c5cfd6d 100644
--- a/Lib/distutils/command/bdist_wininst.py
+++ b/Lib/distutils/command/bdist_wininst.py
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist_wininst' command: create a windows installer
exe-program."""
-# created 2000/06/02, Thomas Heller
-
__revision__ = "$Id$"
import sys, os, string
diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py
index 6bc92a4..0643948 100644
--- a/Lib/distutils/command/build.py
+++ b/Lib/distutils/command/build.py
@@ -2,8 +2,6 @@
Implements the Distutils 'build' command."""
-# created 1999/03/08, Greg Ward
-
__revision__ = "$Id$"
import sys, os
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py
index f0207e4..fe921fb 100644
--- a/Lib/distutils/command/build_clib.py
+++ b/Lib/distutils/command/build_clib.py
@@ -4,9 +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."""
-# created (an empty husk) 1999/12/18, Greg Ward
-# fleshed out 2000/02/03-04
-
__revision__ = "$Id$"
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 250e539..0b3ef14 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -4,8 +4,6 @@ Implements the Distutils 'build_ext' command, for building extension
modules (currently limited to C extensions, should accommodate C++
extensions ASAP)."""
-# created 1999/08/09, Greg Ward
-
__revision__ = "$Id$"
import sys, os, string, re
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py
index 0ab72c0..f61dc17 100644
--- a/Lib/distutils/command/build_py.py
+++ b/Lib/distutils/command/build_py.py
@@ -2,8 +2,6 @@
Implements the Distutils 'build_py' command."""
-# created 1999/03/08, Greg Ward
-
__revision__ = "$Id$"
import sys, string, os
diff --git a/Lib/distutils/command/build_scripts.py b/Lib/distutils/command/build_scripts.py
index 211ade4..e4d6099 100644
--- a/Lib/distutils/command/build_scripts.py
+++ b/Lib/distutils/command/build_scripts.py
@@ -2,8 +2,6 @@
Implements the Distutils 'build_scripts' command."""
-# created 2000/05/23, Bastian Kleineidam
-
__revision__ = "$Id$"
import sys, os, re
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py
index 9ebe0d9..abfa138 100644
--- a/Lib/distutils/command/config.py
+++ b/Lib/distutils/command/config.py
@@ -9,8 +9,6 @@ configure-like tasks: "try to compile this C code", or "figure out where
this header file lives".
"""
-# created 2000/05/29, Greg Ward
-
__revision__ = "$Id$"
import sys, os, string, re
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 67f3789..9adda46 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -4,8 +4,6 @@ Implements the Distutils 'install' command."""
from distutils import log
-# created 1999/03/13, Greg Ward
-
__revision__ = "$Id$"
import sys, os, string
diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py
index 495d150..957ed23 100644
--- a/Lib/distutils/command/install_headers.py
+++ b/Lib/distutils/command/install_headers.py
@@ -3,8 +3,6 @@
Implements the Distutils 'install_headers' command, to install C/C++ header
files to the Python include directory."""
-# created 2000/05/26, Greg Ward
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 1e771c6..5da1c7a 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -1,5 +1,3 @@
-# created 1999/03/13, Greg Ward
-
__revision__ = "$Id$"
import sys, os, string
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index 082aa88..91807e6 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -2,8 +2,6 @@
Implements the Distutils 'sdist' command (create a source distribution)."""
-# created 1999/09/22, Greg Ward
-
__revision__ = "$Id$"
import sys, os, string