diff options
author | ffelixg <142172984+ffelixg@users.noreply.github.com> | 2024-10-07 17:52:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 17:52:34 (GMT) |
commit | 3287c834e5370294e310450115290979aac06efa (patch) | |
tree | a251f7a50d5fbd16e22b5c8a7e69e01fe82c3822 | |
parent | 51d426dc033ef9208c0244a569f3e816e4c328c9 (diff) | |
download | cpython-3287c834e5370294e310450115290979aac06efa.zip cpython-3287c834e5370294e310450115290979aac06efa.tar.gz cpython-3287c834e5370294e310450115290979aac06efa.tar.bz2 |
gh-124182: Explain naming rules for struct sequence types (#124335)
-rw-r--r-- | Doc/c-api/tuple.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/c-api/tuple.rst b/Doc/c-api/tuple.rst index 7a8a613..815afdd 100644 --- a/Doc/c-api/tuple.rst +++ b/Doc/c-api/tuple.rst @@ -167,7 +167,8 @@ type. .. c:member:: const char *name - Name of the struct sequence type. + Fully qualified name of the type; null-terminated UTF-8 encoded. + The name must contain the module name. .. c:member:: const char *doc |