]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
ctypes docs: Fix array-length reference to "non-negative" from "positive" (GH-32097...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 29 Mar 2022 02:47:37 +0000 (19:47 -0700)
committerGitHub <noreply@github.com>
Tue, 29 Mar 2022 02:47:37 +0000 (19:47 -0700)
(cherry picked from commit 76f14b0463dc2c53911eaf95e85374e511ba9bcc)

Co-authored-by: Yonatan Goldschmidt <yon.goldschmidt@gmail.com>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Doc/library/ctypes.rst

index c10e54f153243f282c0c2fb6d509c77b077debdd..7665f214916db0a096900283b7cc643f04ca8862 100644 (file)
@@ -2513,7 +2513,7 @@ Arrays and pointers
    Abstract base class for arrays.
 
    The recommended way to create concrete array types is by multiplying any
-   :mod:`ctypes` data type with a positive integer.  Alternatively, you can subclass
+   :mod:`ctypes` data type with a non-negative integer.  Alternatively, you can subclass
    this type and define :attr:`_length_` and :attr:`_type_` class variables.
    Array elements can be read and written using standard
    subscript and slice accesses; for slice reads, the resulting object is