[pywin32-checkins] pywin32/win32/src win32apimodule.cpp,1.83,1.84
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-02-27 10:48:06
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24693 Modified Files: win32apimodule.cpp Log Message: autoduck: s/string.split/s.split/ Index: win32apimodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32apimodule.cpp,v retrieving revision 1.83 retrieving revision 1.84 diff -C2 -d -r1.83 -r1.84 *** win32apimodule.cpp 7 Feb 2008 05:42:06 -0000 1.83 --- win32apimodule.cpp 27 Feb 2008 10:48:08 -0000 1.84 *************** *** 1514,1518 **** // @rdesc The return value is a single string, with each drive // letter NULL terminated. ! // <nl>Use "string.splitfields (s, '\\000')" to split into components. } --- 1514,1518 ---- // @rdesc The return value is a single string, with each drive // letter NULL terminated. ! // <nl>Use "s.split('\0')" to split into components. } |