diff options
author | Kazantcev Andrey <45011689+heckad@users.noreply.github.com> | 2021-06-04 21:41:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-04 21:41:23 (GMT) |
commit | 2780df478129c4f1042df2868b6adf2bf507cd6e (patch) | |
tree | 657a618c2f986d0e6f165da7fc939757fe032c06 | |
parent | 7459208de194db6222d7e3aa301c2b831dbe566d (diff) | |
download | cpython-2780df478129c4f1042df2868b6adf2bf507cd6e.zip cpython-2780df478129c4f1042df2868b6adf2bf507cd6e.tar.gz cpython-2780df478129c4f1042df2868b6adf2bf507cd6e.tar.bz2 |
Align comment for better readability. (GH-26192)
-rw-r--r-- | Modules/_ctypes/_ctypes.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c index 5f8a723..b31e912 100644 --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -24,16 +24,16 @@ Name methods, members, getsets ============================================================================== PyCStructType_Type __new__(), from_address(), __mul__(), from_param() -UnionType_Type __new__(), from_address(), __mul__(), from_param() -PyCPointerType_Type __new__(), from_address(), __mul__(), from_param(), set_type() +UnionType_Type __new__(), from_address(), __mul__(), from_param() +PyCPointerType_Type __new__(), from_address(), __mul__(), from_param(), set_type() PyCArrayType_Type __new__(), from_address(), __mul__(), from_param() PyCSimpleType_Type __new__(), from_address(), __mul__(), from_param() PyCData_Type - Struct_Type __new__(), __init__() + Struct_Type __new__(), __init__() PyCPointer_Type __new__(), __init__(), _as_parameter_, contents - PyCArray_Type __new__(), __init__(), _as_parameter_, __get/setitem__(), __len__() - Simple_Type __new__(), __init__(), _as_parameter_ + PyCArray_Type __new__(), __init__(), _as_parameter_, __get/setitem__(), __len__() + Simple_Type __new__(), __init__(), _as_parameter_ PyCField_Type PyCStgDict_Type |