diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-06-02 19:18:21 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-06-02 19:18:21 (GMT) |
commit | d6129204843f9dccdf6105ea3152db1e276d6694 (patch) | |
tree | a1096b6228daa65799af915e153a36690e24320c /Doc | |
parent | 010bb99432ec2066c0ea3fb3cabeb454bfad34c1 (diff) | |
parent | d85a1e6b552cd2700500a97d82c3f3ce4cfdeed6 (diff) | |
download | cpython-d6129204843f9dccdf6105ea3152db1e276d6694.zip cpython-d6129204843f9dccdf6105ea3152db1e276d6694.tar.gz cpython-d6129204843f9dccdf6105ea3152db1e276d6694.tar.bz2 |
Issue #16192: Merge from 3.5
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ctypes.rst | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 1d45a37..521b8b9 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -20,11 +20,10 @@ Note: The code samples in this tutorial use :mod:`doctest` to make sure that 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. This type is -an alias for the :class:`c_long` type on 32-bit systems. 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. - +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. .. _ctypes-loading-dynamic-link-libraries: |