Commit ed23d051 authored by Berker Peksag's avatar Berker Peksag

Issue #16192: Fix copy and paste mistake noticed by Eryk Sun

parent 3495a09a
...@@ -21,9 +21,9 @@ they actually work. Since some code samples behave differently under Linux, ...@@ -21,9 +21,9 @@ they actually work. Since some code samples behave differently under Linux,
Windows, or Mac OS X, they contain doctest directives in comments. Windows, or Mac OS X, they contain doctest directives in comments.
Note: Some code samples reference the ctypes :class:`c_int` type. On platforms Note: Some code samples reference the ctypes :class:`c_int` type. On platforms
where ``sizeof(long double) == sizeof(double)`` it is an alias to where ``sizeof(long) == sizeof(int)`` it is an alias to :class:`c_long`.
:class:`c_double`. So, you should not be confused if :class:`c_long` is So, you should not be confused if :class:`c_long` is printed if you would expect
printed if you would expect :class:`c_int` --- they are actually the same type. :class:`c_int` --- they are actually the same type.
.. _ctypes-loading-dynamic-link-libraries: .. _ctypes-loading-dynamic-link-libraries:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment