mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Changed '__rcsid__' to '__revision__'.
This commit is contained in:
parent
60f64330d1
commit
3ce77fd05e
20 changed files with 20 additions and 20 deletions
|
@ -8,4 +8,4 @@ used from a setup script as
|
||||||
setup (...)
|
setup (...)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
|
@ -5,7 +5,7 @@ for the Distutils compiler abstraction model."""
|
||||||
|
|
||||||
# created 1999/07/05, Greg Ward
|
# created 1999/07/05, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, os
|
import sys, os
|
||||||
from types import *
|
from types import *
|
||||||
|
|
|
@ -13,7 +13,7 @@ commands. Currently this means:
|
||||||
|
|
||||||
but this list will undoubtedly grow with time."""
|
but this list will undoubtedly grow with time."""
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
__all__ = ['build',
|
__all__ = ['build',
|
||||||
'build_py',
|
'build_py',
|
||||||
|
|
|
@ -4,7 +4,7 @@ Implements the Distutils 'build' command."""
|
||||||
|
|
||||||
# created 1999/03/08, Greg Ward
|
# created 1999/03/08, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, os
|
import sys, os
|
||||||
from distutils.core import Command
|
from distutils.core import Command
|
||||||
|
|
|
@ -7,7 +7,7 @@ module."""
|
||||||
# created (an empty husk) 1999/12/18, Greg Ward
|
# created (an empty husk) 1999/12/18, Greg Ward
|
||||||
# fleshed out 2000/02/03-04
|
# fleshed out 2000/02/03-04
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
|
|
||||||
# XXX this module has *lots* of code ripped-off quite transparently from
|
# XXX this module has *lots* of code ripped-off quite transparently from
|
||||||
|
|
|
@ -6,7 +6,7 @@ extensions ASAP)."""
|
||||||
|
|
||||||
# created 1999/08/09, Greg Ward
|
# created 1999/08/09, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, os, string, re
|
import sys, os, string, re
|
||||||
from types import *
|
from types import *
|
||||||
|
|
|
@ -7,7 +7,7 @@ module."""
|
||||||
# created (an empty husk) 1999/12/18, Greg Ward
|
# created (an empty husk) 1999/12/18, Greg Ward
|
||||||
# fleshed out 2000/02/03-04
|
# fleshed out 2000/02/03-04
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
|
|
||||||
# XXX this module has *lots* of code ripped-off quite transparently from
|
# XXX this module has *lots* of code ripped-off quite transparently from
|
||||||
|
|
|
@ -4,7 +4,7 @@ Implements the Distutils 'build_py' command."""
|
||||||
|
|
||||||
# created 1999/03/08, Greg Ward
|
# created 1999/03/08, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, string, os
|
import sys, string, os
|
||||||
from types import *
|
from types import *
|
||||||
|
|
|
@ -4,7 +4,7 @@ Implements the Distutils 'install' command."""
|
||||||
|
|
||||||
# created 1999/03/13, Greg Ward
|
# created 1999/03/13, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, os, string
|
import sys, os, string
|
||||||
from types import *
|
from types import *
|
||||||
|
|
|
@ -4,7 +4,7 @@ Implement the Distutils "install_ext" command to install extension modules."""
|
||||||
|
|
||||||
# created 1999/09/12, Greg Ward
|
# created 1999/09/12, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
from distutils.core import Command
|
from distutils.core import Command
|
||||||
from distutils.util import copy_tree
|
from distutils.util import copy_tree
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# created 1999/03/13, Greg Ward
|
# created 1999/03/13, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, string
|
import sys, string
|
||||||
from distutils.core import Command
|
from distutils.core import Command
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# created 1999/03/13, Greg Ward
|
# created 1999/03/13, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, string
|
import sys, string
|
||||||
from distutils.core import Command
|
from distutils.core import Command
|
||||||
|
|
|
@ -4,7 +4,7 @@ Implements the Distutils 'sdist' command (create a source distribution)."""
|
||||||
|
|
||||||
# created 1999/09/22, Greg Ward
|
# created 1999/09/22, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, os, string, re
|
import sys, os, string, re
|
||||||
import fnmatch
|
import fnmatch
|
||||||
|
|
|
@ -8,7 +8,7 @@ may be subclassed by clients for still more flexibility)."""
|
||||||
|
|
||||||
# created 1999/03/01, Greg Ward
|
# created 1999/03/01, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, os
|
import sys, os
|
||||||
import string, re
|
import string, re
|
||||||
|
|
|
@ -10,7 +10,7 @@ symbols whose names start with "Distutils" and end with "Error"."""
|
||||||
|
|
||||||
# created 1999/03/03, Greg Ward
|
# created 1999/03/03, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import types
|
import types
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ additional features:
|
||||||
|
|
||||||
# created 1999/03/03, Greg Ward
|
# created 1999/03/03, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, string, re
|
import sys, string, re
|
||||||
from types import *
|
from types import *
|
||||||
|
|
|
@ -6,7 +6,7 @@ for the Microsoft Visual Studio."""
|
||||||
|
|
||||||
# created 1999/08/19, Perry Stoll
|
# created 1999/08/19, Perry Stoll
|
||||||
#
|
#
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
|
@ -5,7 +5,7 @@ specific functions for launching another program in a sub-process."""
|
||||||
|
|
||||||
# created 1999/07/24, Greg Ward
|
# created 1999/07/24, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, os, string
|
import sys, os, string
|
||||||
from distutils.errors import *
|
from distutils.errors import *
|
||||||
|
|
|
@ -15,7 +15,7 @@ the "typical" Unix-style command-line C compiler:
|
||||||
|
|
||||||
# created 1999/07/05, Greg Ward
|
# created 1999/07/05, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import string, re, os
|
import string, re, os
|
||||||
from types import *
|
from types import *
|
||||||
|
|
|
@ -9,7 +9,7 @@ file causing it."""
|
||||||
|
|
||||||
# created 1999/03/08, Greg Ward
|
# created 1999/03/08, Greg Ward
|
||||||
|
|
||||||
__rcsid__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import os, string
|
import os, string
|
||||||
from distutils.errors import *
|
from distutils.errors import *
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue