Issue #16192: Merge from 3.5

This commit is contained in:
Berker Peksag 2016-06-02 15:28:29 -07:00
commit ca4589e932
1 changed files with 3 additions and 3 deletions

View File

@ -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.
Note: Some code samples reference the ctypes :class:`c_int` type. On platforms
where ``sizeof(long double) == sizeof(double)`` it is an alias to
:class:`c_double`. So, you should not be confused if :class:`c_long` is
printed if you would expect :class:`c_int` --- they are actually the same type.
where ``sizeof(long) == sizeof(int)`` it is an alias to :class:`c_long`.
So, you should not be confused if :class:`c_long` is printed if you would expect
:class:`c_int` --- they are actually the same type.
.. _ctypes-loading-dynamic-link-libraries: