Update of /cvsroot/pywin32/pywin32/win32/Lib
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27962/win32/Lib
Modified Files:
Tag: py3k
regcheck.py
Log Message:
merge recent UnicodeType, string module and NeedUnicodeConversions changes from trunk
Index: regcheck.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/Lib/regcheck.py,v
retrieving revision 1.6.2.3
retrieving revision 1.6.2.4
diff -C2 -d -r1.6.2.3 -r1.6.2.4
*** regcheck.py 27 Nov 2008 11:31:05 -0000 1.6.2.3
--- regcheck.py 4 Dec 2008 05:08:41 -0000 1.6.2.4
***************
*** 21,26 ****
def CheckPathString(pathString):
! import string
! for path in string.split(pathString, ";"):
if not os.path.isdir(path):
return "'%s' is not a valid directory!" % path
--- 21,25 ----
def CheckPathString(pathString):
! for path in pathString.split(";"):
if not os.path.isdir(path):
return "'%s' is not a valid directory!" % path
|