diff options
author | monkeyman192 <monkey_man_192@yahoo.com.au> | 2024-10-08 12:41:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 12:41:46 (GMT) |
commit | 5967dd8a4de60a418de84d1d1d9efc063ad12c47 (patch) | |
tree | 132f571f4bdbf78eb3596165029f0d91dc9d4f55 /Doc/library | |
parent | e8773e59a835d23b9648271e0eb79c1651581564 (diff) | |
download | cpython-5967dd8a4de60a418de84d1d1d9efc063ad12c47.zip cpython-5967dd8a4de60a418de84d1d1d9efc063ad12c47.tar.gz cpython-5967dd8a4de60a418de84d1d1d9efc063ad12c47.tar.bz2 |
gh-112433 add versionadded for `ctypes.Structure._align_` (#125087)
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ctypes.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 535c517..d76b8d4 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -2589,6 +2589,8 @@ fields, or any other data types containing pointer type fields. the structure when being packed or unpacked to/from memory. Setting this attribute to 0 is the same as not setting it at all. + .. versionadded:: 3.13 + .. attribute:: _layout_ An optional string naming the struct/union layout. It can currently |