]> granicus.if.org Git - python/commitdiff
Remove 'created by' lines; people can use CVS for this, and the information is often...
authorAndrew M. Kuchling <amk@amk.ca>
Thu, 14 Nov 2002 02:25:42 +0000 (02:25 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Thu, 14 Nov 2002 02:25:42 +0000 (02:25 +0000)
34 files changed:
Lib/distutils/archive_util.py
Lib/distutils/ccompiler.py
Lib/distutils/cmd.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/config.py
Lib/distutils/command/install.py
Lib/distutils/command/install_headers.py
Lib/distutils/command/install_lib.py
Lib/distutils/command/sdist.py
Lib/distutils/core.py
Lib/distutils/cygwinccompiler.py
Lib/distutils/dep_util.py
Lib/distutils/dir_util.py
Lib/distutils/dist.py
Lib/distutils/emxccompiler.py
Lib/distutils/extension.py
Lib/distutils/fancy_getopt.py
Lib/distutils/file_util.py
Lib/distutils/filelist.py
Lib/distutils/msvccompiler.py
Lib/distutils/spawn.py
Lib/distutils/sysconfig.py
Lib/distutils/text_file.py
Lib/distutils/unixccompiler.py
Lib/distutils/util.py
Lib/distutils/version.py

index 47fac0cb7dc74c74de0e3c20a6c7dbdb65b52584..98c1e559508e8b12fa54eec19478b789ebc15d73 100644 (file)
@@ -3,8 +3,6 @@
 Utility functions for creating archive files (tarballs, zip files,
 that sort of thing)."""
 
-# created 2000/04/03, Greg Ward (extracted from util.py)
-
 __revision__ = "$Id$"
 
 import os
index 8aca058b0fd4e2caea0c24e45a07d4e0fb2c786d..3084947d586434b9a12615c81b813a46970fa2c1 100644 (file)
@@ -3,8 +3,6 @@
 Contains CCompiler, an abstract base class that defines the interface
 for the Distutils compiler abstraction model."""
 
-# created 1999/07/05, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, os, re
index 6a268184c050096679c835b0fd9904bebfd8a156..b35eb07855aa7f9e3e09b767d4bd994a2608bf29 100644 (file)
@@ -4,9 +4,6 @@ Provides the Command class, the base class for the command classes
 in the distutils.command package.
 """
 
-# created 2000/04/03, Greg Ward
-# (extricated from core.py; actually dates back to the beginning)
-
 __revision__ = "$Id$"
 
 import sys, os, string, re
index 454c9df11977a49c71532d129a52f00f58b1306e..e0648f3bdd11e01d185547f5ba6b99f586c84952 100644 (file)
@@ -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
index 712fec884ed3e8188478a22d9d50a68fc5311d85..7562b7081258f65954ead68462f0712d4b043eb8 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)."""
 
-# created 2000/03/29, Greg Ward
-
 __revision__ = "$Id$"
 
 import os
index 88be5e8bf7959a366804410b3f8c841384733a56..a7bc45f481f53047791a782bcbe53d4bcb54db8a 100644 (file)
@@ -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
index dcc390e6d68843618d09f46373ad9c287fc4fab5..c5cfd6d31b7741533d4ca5914ff33ee6c63d9fe6 100644 (file)
@@ -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
index 6bc92a43b87f64ec60fa9f1a043611f0b12f1a16..0643948c926d84a63cf542c41089cb33ca92a7cd 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'build' command."""
 
-# created 1999/03/08, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, os
index f0207e4e0ff14360e1d8195ac5eb2dfbaefa72ac..fe921fb88b5026bb1e8b4211e0158700d982b6a2 100644 (file)
@@ -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$"
 
 
index 250e539340c3ac40aecdb9c3f4764dd9069e93f6..0b3ef1493379c0b45451759cf68f669412695c00 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)."""
 
-# created 1999/08/09, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, os, string, re
index 0ab72c08f4b2165ca7979b7a78d8db337f85e875..f61dc17a18c4d2c8c02f6b646b22686e4e028955 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'build_py' command."""
 
-# created 1999/03/08, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, string, os
index 211ade40fad16612c49edd6942466cd95b19bd98..e4d6099bd5725c00ad58f3c5e5eab404853c4680 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'build_scripts' command."""
 
-# created 2000/05/23, Bastian Kleineidam
-
 __revision__ = "$Id$"
 
 import sys, os, re
index 9ebe0d919138217573bd8250bf6fff86c477a4ec..abfa13853093d1b197a23bfbd4a787151a000019 100644 (file)
@@ -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
index 67f37893f58f2e1bde1d23e0b89ce3fcb683db78..9adda4688a7a3cb6ab259f0f795e87e593285a6e 100644 (file)
@@ -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
index 495d150c553bec2e484b8f0cb3b4433b0f29c0fc..957ed239b1bf19cf85b6747be08904b98ac1f72f 100644 (file)
@@ -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
index 1e771c619ed0bdd3f66f690286fb3475db241fb9..5da1c7aea7ab85edb6b607c5d2311a3add0191fc 100644 (file)
@@ -1,5 +1,3 @@
-# created 1999/03/13, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, os, string
index 082aa88ce320a41a7c25197d72fcd8d2715d239a..91807e6a3f97bb51816894812b389dba6f028b32 100644 (file)
@@ -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
index 51961454f6b9143ec402ef0382cc902b6f0ffeef..5be9e4ec295c56abc3b40bbe79c6f34e51e3d92b 100644 (file)
@@ -6,8 +6,6 @@ indirectly provides the Distribution and Command classes, although they are
 really defined in distutils.dist and distutils.cmd.
 """
 
-# created 1999/03/01, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, os
index a046ee21c8ee961639f4ecd578bec84f1b5a7131..93f88038474df2d3f1ed084d525f133c75b57ee3 100644 (file)
@@ -41,8 +41,6 @@ cygwin in no-cygwin mode).
 #     in the dlls.
 #   *** only the version of June 2000 shows these problems
 
-# created 2000/05/05, Rene Liebscher
-
 __revision__ = "$Id$"
 
 import os,sys,copy
index bbb6d235b3a29d13799c2d886511a1af3a85c84d..f49665483af0729b38d46d975ced5d693aea8a29 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."""
 
-# created 2000/04/03, Greg Ward (extracted from util.py)
-
 __revision__ = "$Id$"
 
 import os
index 8b3e06b2fafbdaf3bdfcf673e413ed1f9eac01a9..d407e9ac5b561d0d2e149b0a6dbedbbab9ec8f52 100644 (file)
@@ -2,8 +2,6 @@
 
 Utility functions for manipulating directories and directory trees."""
 
-# created 2000/04/03, Greg Ward (extracted from util.py)
-
 __revision__ = "$Id$"
 
 import os
index dbeeb8b1dcdd73efb537400b27acbc9eb9634cf7..3a690696bb57c499be8737ff981507389155a3b9 100644 (file)
@@ -4,9 +4,6 @@ Provides the Distribution class, which represents the module distribution
 being built/installed/distributed.
 """
 
-# created 2000/04/03, Greg Ward
-# (extricated from core.py; actually dates back to the beginning)
-
 __revision__ = "$Id$"
 
 import sys, os, string, re
index 624c0fecbdc6806d57121d81a386a404befaf1b2..76bdbae506e2379e370bd01ba890f38952c0b3fd 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
 
-# created 2001/5/7, Andrew MacIntyre, from Rene Liebscher's cywinccompiler.py
-
 __revision__ = "$Id$"
 
 import os,sys,copy
index 9dc316a1a5b3fae57b78993984b55c1ee71708cd..5b197fa58d2d2a908007396ed87a02700e1f5b0a 100644 (file)
@@ -3,8 +3,6 @@
 Provides the Extension class, used to describe C/C++ extension
 modules in setup scripts."""
 
-# created 2000/05/30, Greg Ward
-
 __revision__ = "$Id$"
 
 import os, string
index 5de64e15da64cd3c434fea7d4c55caf01962a55a..f78b0a6854416c7a0e91f1dded1bbdb90f5bb176 100644 (file)
@@ -8,8 +8,6 @@ additional features:
   * options set attributes of a passed-in object
 """
 
-# created 1999/03/03, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, string, re
index 56b1faee45243d88e0e1c8d8d64bf178df11412b..c2fa086f0510826db8b5123e385aefb850be015a 100644 (file)
@@ -3,8 +3,6 @@
 Utility functions for operating on single files.
 """
 
-# created 2000/04/03, Greg Ward (extracted from util.py)
-
 __revision__ = "$Id$"
 
 import os
index b4f3269cf15f8e03837926ee9cc5263f166636e9..4b5d47d02ff9c82cf7772c7234858e4ac340a61a 100644 (file)
@@ -4,11 +4,6 @@ Provides the FileList class, used for poking about the filesystem
 and building lists of files.
 """
 
-# created 2000/07/17, Rene Liebscher (as template.py)
-# most parts taken from commands/sdist.py
-# renamed 2000/07/29 (to filelist.py) and officially added to
-#  the Distutils source, Greg Ward
-
 __revision__ = "$Id$"
 
 import os, string, re
index a2459ad032504967a9836934922e724f951dc866..c2bd77de4466e778561d0af56a5273bd8646bb1d 100644 (file)
@@ -4,7 +4,7 @@ Contains MSVCCompiler, an implementation of the abstract CCompiler class
 for the Microsoft Visual Studio."""
 
 
-# created 1999/08/19, Perry Stoll
+# Written by Perry Stoll
 # hacked by Robin Becker and Thomas Heller to do a better job of
 #   finding DevStudio (through the registry)
 
index 4df6e097de9130a8040f76d476c3c50d074fa775..f94817d498826b98b5bd4487b755a8df1c1392b5 100644 (file)
@@ -6,8 +6,6 @@ Also provides the 'find_executable()' to search the path for a given
 executable name.
 """
 
-# created 1999/07/24, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, os, string
index b12b98deee57c1c880df5fb3103c70a2191886a8..aa3636f609c1960ac6a42657012a6a5d41bb7a0d 100644 (file)
@@ -7,7 +7,6 @@ available.
 
 Written by:   Fred L. Drake, Jr.
 Email:        <fdrake@acm.org>
-Initial date: 17-Dec-1998
 """
 
 __revision__ = "$Id$"
index 7086b1af5683a501d128d8f408c70291b400da0c..67efd65e36d80f859b37659ae586a24a6af4b820 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."""
 
-# created 1999/01/12, Greg Ward
-
 __revision__ = "$Id$"
 
 from types import *
index 2f4546e1a7a96b89f68d36506490a3e825aeb8f6..603dfe90cc9125fed619c3fe243997133e5b9f8a 100644 (file)
@@ -13,8 +13,6 @@ the "typical" Unix-style command-line C compiler:
   * link shared library handled by 'cc -shared'
 """
 
-# created 1999/07/05, Greg Ward
-
 __revision__ = "$Id$"
 
 import os, sys
index 8d22415496fa2491c8c3bf6096785a8c38b02bbd..9de6077fc6daecdd9715abcd9f1fb795243e6143 100644 (file)
@@ -4,8 +4,6 @@ Miscellaneous utility functions -- anything that doesn't fit into
 one of the other *util.py modules.
 """
 
-# created 1999/03/08, Greg Ward
-
 __revision__ = "$Id$"
 
 import sys, os, string, re
index 02502dac9598ccfad95d89c3005fa4ac81766bfd..71a56147195b15800174f6b6f23b8b7ffe8979aa 100644 (file)
@@ -4,8 +4,6 @@
 # Implements multiple version numbering conventions for the
 # Python Module Distribution Utilities.
 #
-# written by Greg Ward, 1998/12/17
-#
 # $Id$
 #