PATH: //proc/self/root/opt/alt/python311/lib64/python3.11/ctypes/test
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📄 __main__.py
↓
X
📁 __pycache__/
X
📄 test_anon.py
↓
X
📄 test_array_in_pointer.py
↓
X
📄 test_arrays.py
↓
X
📄 test_as_parameter.py
↓
X
📄 test_bitfields.py
↓
X
📄 test_buffers.py
↓
X
📄 test_bytes.py
↓
X
📄 test_byteswap.py
↓
X
📄 test_callbacks.py
↓
X
📄 test_cast.py
↓
X
📄 test_cfuncs.py
↓
X
📄 test_checkretval.py
↓
X
📄 test_delattr.py
↓
X
📄 test_errno.py
↓
X
📄 test_find.py
↓
X
📄 test_frombuffer.py
↓
X
📄 test_funcptr.py
↓
X
📄 test_functions.py
↓
X
📄 test_incomplete.py
↓
X
📄 test_init.py
↓
X
📄 test_internals.py
↓
X
📄 test_keeprefs.py
↓
X
📄 test_libc.py
↓
X
📄 test_loading.py
↓
X
📄 test_macholib.py
↓
X
📄 test_memfunctions.py
↓
X
📄 test_numbers.py
↓
X
📄 test_objects.py
↓
X
📄 test_parameters.py
↓
X
📄 test_pep3118.py
↓
X
📄 test_pickling.py
↓
X
📄 test_pointers.py
↓
X
📄 test_prototypes.py
↓
X
📄 test_python_api.py
↓
X
📄 test_random_things.py
↓
X
📄 test_refcounts.py
↓
X
📄 test_repr.py
↓
X
📄 test_returnfuncptrs.py
↓
X
📄 test_simplesubclasses.py
↓
X
📄 test_sizes.py
↓
X
📄 test_slicing.py
↓
X
📄 test_stringptr.py
↓
X
📄 test_strings.py
↓
X
📄 test_struct_fields.py
↓
X
📄 test_structures.py
↓
X
📄 test_unaligned_structures.py
↓
X
📄 test_unicode.py
↓
X
📄 test_values.py
↓
X
📄 test_varsize_struct.py
↓
X
📄 test_win32.py
↓
X
📄 test_wintypes.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: test_objects.py
r''' This tests the '_objects' attribute of ctypes instances. '_objects' holds references to objects that must be kept alive as long as the ctypes instance, to make sure that the memory buffer is valid. WARNING: The '_objects' attribute is exposed ONLY for debugging ctypes itself, it MUST NEVER BE MODIFIED! '_objects' is initialized to a dictionary on first use, before that it is None. Here is an array of string pointers: >>> from ctypes import * >>> array = (c_char_p * 5)() >>> print(array._objects) None >>> The memory block stores pointers to strings, and the strings itself assigned from Python must be kept. >>> array[4] = b'foo bar' >>> array._objects {'4': b'foo bar'} >>> array[4] b'foo bar' >>> It gets more complicated when the ctypes instance itself is contained in a 'base' object. >>> class X(Structure): ... _fields_ = [("x", c_int), ("y", c_int), ("array", c_char_p * 5)] ... >>> x = X() >>> print(x._objects) None >>> The'array' attribute of the 'x' object shares part of the memory buffer of 'x' ('_b_base_' is either None, or the root object owning the memory block): >>> print(x.array._b_base_) # doctest: +ELLIPSIS <ctypes.test.test_objects.X object at 0x...> >>> >>> x.array[0] = b'spam spam spam' >>> x._objects {'0:2': b'spam spam spam'} >>> x.array._b_base_._objects {'0:2': b'spam spam spam'} >>> ''' import unittest, doctest import ctypes.test.test_objects class TestCase(unittest.TestCase): def test(self): failures, tests = doctest.testmod(ctypes.test.test_objects) self.assertFalse(failures, 'doctests failed, see output above') if __name__ == '__main__': doctest.testmod(ctypes.test.test_objects)
SIMPAN PERUBAHAN