diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-04-22 15:04:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-22 15:04:11 (GMT) |
commit | c869f4ed5c404381ac72caf3142145c2fd7b2be4 (patch) | |
tree | 1ae590877953d6554fb9c89b374e2f44a8bc5b1f | |
parent | 312d8192f3feb52098f67c3ec0edbe27d9fb1f67 (diff) | |
download | cpython-c869f4ed5c404381ac72caf3142145c2fd7b2be4.zip cpython-c869f4ed5c404381ac72caf3142145c2fd7b2be4.tar.gz cpython-c869f4ed5c404381ac72caf3142145c2fd7b2be4.tar.bz2 |
[3.12] gh-118030: Group definitions for `ParamSpecArgs` and `ParamSpecKwargs` in `typing.rst` (GH-118154) (#118155)
Co-authored-by: Nice Zombies <nineteendo19d0@gmail.com>
-rw-r--r-- | Doc/library/typing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 0edd5f7..8523a1d 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1870,7 +1870,7 @@ without the dedicated syntax, as documented below. * :ref:`annotating-callables` .. data:: ParamSpecArgs -.. data:: ParamSpecKwargs + ParamSpecKwargs Arguments and keyword arguments attributes of a :class:`ParamSpec`. The ``P.args`` attribute of a ``ParamSpec`` is an instance of ``ParamSpecArgs``, |