[Python-checkins] bpo-37513: Change ValueError to TypeError in an example in ctypes doc (GH-14615)

Xiang Zhang webhook-mailer at python.org
Sun Jul 7 11:40:31 EDT 2019


https://github.com/python/cpython/commit/f6cdd3ff687ebbf8209d793a18a042ea495c4aeb
commit: f6cdd3ff687ebbf8209d793a18a042ea495c4aeb
branch: master
author: Hai Shi <shihai1992 at gmail.com>
committer: Xiang Zhang <angwerzx at 126.com>
date: 2019-07-07T23:40:07+08:00
summary:

bpo-37513: Change ValueError to TypeError in an example in ctypes doc (GH-14615)

files:
M Doc/library/ctypes.rst

diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
index 2c57cc7ec427..680703d4483f 100644
--- a/Doc/library/ctypes.rst
+++ b/Doc/library/ctypes.rst
@@ -576,7 +576,7 @@ Here is a simple example of a POINT structure, which contains two integers named
    >>> POINT(1, 2, 3)
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
-   ValueError: too many initializers
+   TypeError: too many initializers
    >>>
 
 You can, however, build much more complicated structures.  A structure can



More information about the Python-checkins mailing list