home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- import unittest
- from ctypes import *
-
- class X(Structure):
- _fields_ = [
- ('foo', c_int)]
-
-
- class TestCase(unittest.TestCase):
-
- def test_simple(self):
- self.assertRaises(TypeError, delattr, c_int(42), 'value')
-
-
- def test_chararray(self):
- self.assertRaises(TypeError, delattr, c_char * 5(), 'value')
-
-
- def test_struct(self):
- self.assertRaises(TypeError, delattr, X(), 'foo')
-
-
- if __name__ == '__main__':
- unittest.main()
-
-