A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://mail.python.org/pipermail/python-checkins/2000-July/012279.html below:

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

[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.33Greg Ward python-dev@python.org
Wed, 26 Jul 2000 19:13:33 -0700
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.




RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4