Update of /cvsroot/pywin32/pywin32/win32/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8907/lib
Modified Files:
regcheck.py
Log Message:
Fix deprecation warning
Index: regcheck.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/Lib/regcheck.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** regcheck.py 19 Sep 2006 00:37:27 -0000 1.5
--- regcheck.py 19 May 2008 13:30:38 -0000 1.6
***************
*** 4,8 ****
import warnings
warnings.warn("The regcheck module has been pending deprecation since build 210",
! category=warnings.PendingDeprecationWarning)
import win32con
--- 4,8 ----
import warnings
warnings.warn("The regcheck module has been pending deprecation since build 210",
! category=PendingDeprecationWarning)
import win32con
|