[Python-checkins] CVS: distutils/distutils ccompiler.py,1.29,1.30 cmd.py,1.19,1.20 cygwinccompiler.py,1.2,1.3 util.py,1.38,1.39 dist.py,1.32,1.33
Greg Ward
python-dev@python.org
2000年7月26日 19:13:33 -0700
- Previous message: [Python-checkins] CVS: distutils/distutils/command bdist_rpm.py,1.13,1.14 build_ext.py,1.57,1.58 build_scripts.py,1.3,1.4 install_data.py,1.10,1.11
- Next message: [Python-checkins] CVS: distutils setup.py,1.17,1.18
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/distutils/distutils
In directory slayer.i.sourceforge.net:/tmp/cvs-serv26443
Modified Files:
ccompiler.py cmd.py cygwinccompiler.py util.py dist.py
Log Message:
Fixed a grab-bag of typos spotted by Rob Hooft.
Index: ccompiler.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/ccompiler.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** ccompiler.py 2000年07月07日 20:41:20 1.29
--- ccompiler.py 2000年07月27日 02:13:19 1.30
***************
*** 305,309 ****
def add_link_object (self, object):
"""Add 'object' to the list of object files (or analogues, such as
! explictly named library files or the output of "resource
compilers") to be included in every link driven by this compiler
object.
--- 305,309 ----
def add_link_object (self, object):
"""Add 'object' to the list of object files (or analogues, such as
! explicitly named library files or the output of "resource
compilers") to be included in every link driven by this compiler
object.
Index: cmd.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/cmd.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** cmd.py 2000年06月28日 14:48:01 1.19
--- cmd.py 2000年07月27日 02:13:19 1.20
***************
*** 56,60 ****
# "not defined, check self.distribution's copy", while 0 or 1 mean
# false and true (duh). Note that this means figuring out the real
! # value of each flag is a touch complicatd -- hence "self.verbose"
# (etc.) will be handled by __getattr__, below.
self._verbose = None
--- 56,60 ----
# "not defined, check self.distribution's copy", while 0 or 1 mean
# false and true (duh). Note that this means figuring out the real
! # value of each flag is a touch complicated -- hence "self.verbose"
# (etc.) will be handled by __getattr__, below.
self._verbose = None
Index: cygwinccompiler.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/cygwinccompiler.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** cygwinccompiler.py 2000年06月29日 22:57:55 1.2
--- cygwinccompiler.py 2000年07月27日 02:13:19 1.3
***************
*** 146,150 ****
# who wants symbols and a many times larger output file
! # should explicitely switch the debug mode on
# otherwise we let dllwrap strip the output file
# (On my machine unstripped_file = stripped_file + 254KB
--- 146,150 ----
# who wants symbols and a many times larger output file
! # should explicitly switch the debug mode on
# otherwise we let dllwrap strip the output file
# (On my machine unstripped_file = stripped_file + 254KB
Index: util.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/util.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** util.py 2000年06月28日 14:48:01 1.38
--- util.py 2000年07月27日 02:13:19 1.39
***************
*** 106,110 ****
options, etc. Currently this includes:
HOME - user's home directory (Unix only)
! PLAT - desription of the current platform, including hardware
and OS (see 'get_platform()')
"""
--- 106,110 ----
options, etc. Currently this includes:
HOME - user's home directory (Unix only)
! PLAT - description of the current platform, including hardware
and OS (see 'get_platform()')
"""
***************
*** 126,130 ****
def subst_vars (str, local_vars):
"""Perform shell/Perl-style variable substitution on 'string'.
! Every occurence of '$' followed by a name, or a name enclosed in
braces, is considered a variable. Every variable is substituted by
the value found in the 'local_vars' dictionary, or in 'os.environ'
--- 126,130 ----
def subst_vars (str, local_vars):
"""Perform shell/Perl-style variable substitution on 'string'.
! Every occurrence of '$' followed by a name, or a name enclosed in
braces, is considered a variable. Every variable is substituted by
the value found in the 'local_vars' dictionary, or in 'os.environ'
Index: dist.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/dist.py,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** dist.py 2000年07月07日 20:45:21 1.32
--- dist.py 2000年07月27日 02:13:19 1.33
***************
*** 168,172 ****
# been instantiated -- a false value will be inserted when the
# command object is created, and replaced with a true value when
! # the command is succesfully run. Thus it's probably best to use
# '.get()' rather than a straight lookup.
self.have_run = {}
--- 168,172 ----
# been instantiated -- a false value will be inserted when the
# command object is created, and replaced with a true value when
! # the command is successfully run. Thus it's probably best to use
# '.get()' rather than a straight lookup.
self.have_run = {}
***************
*** 678,682 ****
def get_command_obj (self, command, create=1):
"""Return the command object for 'command'. Normally this object
! is cached on a previous call to 'get_command_obj()'; if no comand
object for 'command' is in the cache, then we either create and
return it (if 'create' is true) or return None.
--- 678,682 ----
def get_command_obj (self, command, create=1):
"""Return the command object for 'command'. Normally this object
! is cached on a previous call to 'get_command_obj()'; if no command
object for 'command' is in the cache, then we either create and
return it (if 'create' is true) or return None.
- Previous message: [Python-checkins] CVS: distutils/distutils/command bdist_rpm.py,1.13,1.14 build_ext.py,1.57,1.58 build_scripts.py,1.3,1.4 install_data.py,1.10,1.11
- Next message: [Python-checkins] CVS: distutils setup.py,1.17,1.18
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]