Update of /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/wrapped_for_pydev/ctypes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30007/PySrc/ThirdParty/wrapped_for_pydev/ctypes
Modified Files:
_endian.py util.py __init__.py wintypes.py
Log Message:
Added tags to ignore errors
Index: wintypes.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/wrapped_for_pydev/ctypes/wintypes.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** wintypes.py 12 Apr 2008 12:08:00 -0000 1.1
--- wintypes.py 12 Apr 2008 13:01:15 -0000 1.2
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
# XXX This module needs cleanup.
Index: util.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/wrapped_for_pydev/ctypes/util.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** util.py 12 Apr 2008 12:08:00 -0000 1.1
--- util.py 12 Apr 2008 13:01:15 -0000 1.2
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
import sys, os
import ctypes
Index: __init__.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/wrapped_for_pydev/ctypes/__init__.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** __init__.py 12 Apr 2008 12:08:00 -0000 1.1
--- __init__.py 12 Apr 2008 13:01:15 -0000 1.2
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
"""create and manipulate C data types in Python"""
Index: _endian.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/wrapped_for_pydev/ctypes/_endian.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** _endian.py 12 Apr 2008 12:08:00 -0000 1.1
--- _endian.py 12 Apr 2008 13:01:15 -0000 1.2
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
import sys
from ctypes import *
|