commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue-common/src/external shellwords.py README.s...


From: Jason Cater
Subject: gnue-common/src/external shellwords.py README.s...
Date: Thu, 21 Aug 2003 11:54:34 -0400

CVSROOT:        /cvsroot/gnue
Module name:    gnue-common
Branch:         
Changes by:     Jason Cater <address@hidden>    03/08/21 11:54:34

Modified files:
        src/external   : shellwords.py 
Added files:
        src/external   : README.shellwords 

Log message:
        version update

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-common/src/external/README.shellwords?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-common/src/external/shellwords.py.diff?tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: gnue-common/src/external/shellwords.py
diff -c gnue-common/src/external/shellwords.py:1.1 
gnue-common/src/external/shellwords.py:1.2
*** gnue-common/src/external/shellwords.py:1.1  Wed Nov 13 18:56:24 2002
--- gnue-common/src/external/shellwords.py      Thu Aug 21 11:54:34 2003
***************
*** 37,43 ****
  """ # " emacs happy
  
  __author__ = "Hartmut Goebel <address@hidden>"
! __version__ = "0.1"
  __copyright__ = "(C) Copyright 2002 by Hartmut Goebel"
  __license__ = "Python Software Foundation License"
  __url__ = 'http://www.crazy-compilers.com/py-lib/#shellwords'
--- 37,43 ----
  """ # " emacs happy
  
  __author__ = "Hartmut Goebel <address@hidden>"
! __version__ = "0.2"
  __copyright__ = "(C) Copyright 2002 by Hartmut Goebel"
  __license__ = "Python Software Foundation License"
  __url__ = 'http://www.crazy-compilers.com/py-lib/#shellwords'
***************
*** 123,130 ****
              if arg != None:
                  arg_list.append(str(arg))
              arg = Arg()
!             while line[i].isspace(): i += 1
! 
          else:
              match = re_outside.match(line, i)
              assert match
--- 123,130 ----
              if arg != None:
                  arg_list.append(str(arg))
              arg = Arg()
!             while i < len(line) and line[i].isspace():
!                 i += 1
          else:
              match = re_outside.match(line, i)
              assert match




reply via email to

[Prev in Thread] Current Thread [Next in Thread]