[Python-checkins] CVS: python/dist/src/Lib/dos-8x3 posixpat.py,1.10,1.11 queue.py,1.7,1.8 test_win.py,1.1,1.2

Jeremy Hylton python-dev@python.org
Wed, 28 Jun 2000 07:48:04 -0700


Update of /cvsroot/python/python/dist/src/Lib/dos-8x3
In directory slayer.i.sourceforge.net:/tmp/cvs-serv723/Lib/dos-8x3

Modified Files:
	posixpat.py queue.py test_win.py 
Log Message:
typos fixed by Rob Hooft


Index: posixpat.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/dos-8x3/posixpat.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** posixpat.py	2000/05/08 17:31:00	1.10
--- posixpat.py	2000/06/28 14:48:01	1.11
***************
*** 25,29 ****
  
  
! # Return wheter a path is absolute.
  # Trivial in Posix, harder on the Mac or MS-DOS.
  
--- 25,29 ----
  
  
! # Return whether a path is absolute.
  # Trivial in Posix, harder on the Mac or MS-DOS.
  
***************
*** 305,309 ****
  # Expand paths containing shell variable substitutions.
  # This expands the forms $variable and ${variable} only.
! # Non-existant variables are left unchanged.
  
  _varprog = None
--- 305,309 ----
  # Expand paths containing shell variable substitutions.
  # This expands the forms $variable and ${variable} only.
! # Non-existent variables are left unchanged.
  
  _varprog = None

Index: queue.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/dos-8x3/queue.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** queue.py	2000/05/08 17:31:00	1.7
--- queue.py	2000/06/28 14:48:01	1.8
***************
*** 120,124 ****
          return len(self.queue)
  
!     # Check wheter the queue is empty
      def _empty(self):
          return not self.queue
--- 120,124 ----
          return len(self.queue)
  
!     # Check whether the queue is empty
      def _empty(self):
          return not self.queue

Index: test_win.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/dos-8x3/test_win.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** test_win.py	2000/05/08 17:31:03	1.1
--- test_win.py	2000/06/28 14:48:01	1.2
***************
*** 116,120 ****
      try:
          key = OpenKey(root_key, test_key_name)
!         assert 0, "Could open the non-existant key"
      except WindowsError: # Use this error name this time
          pass
--- 116,120 ----
      try:
          key = OpenKey(root_key, test_key_name)
!         assert 0, "Could open the non-existent key"
      except WindowsError: # Use this error name this time
          pass