Skip to content

ctypes: wrong exception message in docs #99266

Closed
@kamilturek

Description

@kamilturek

Documentation

The ctypes docs say that the message of the ArgumentError for the presented example should be as follows:
image

In fact, it looks like this:

>>> strchr = libc.strchr
>>> strchr.restype = c_char_p
>>> strchr.argtypes = [c_char_p, c_char]
>>> 
>>> strchr(b"abcdef", b"def")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ctypes.ArgumentError: argument 2: TypeError: wrong type

I will prepare a PR.

Metadata

Metadata

Assignees

No one assigned

    Labels

    docsDocumentation in the Doc dir

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions