diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-06 00:22:22 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-06 00:22:22 (GMT) |
commit | f3dd32950b1ee88f06fdd2a14b18bcae9551905e (patch) | |
tree | e078a2bb3493a96e8755990eac817178075e1469 | |
parent | 56b4872ff5cb1eef8fcef61db3b9b36f7acc5f1e (diff) | |
parent | 5130a4d5d74b19d704099cb40758527c1894185a (diff) | |
download | cpython-f3dd32950b1ee88f06fdd2a14b18bcae9551905e.zip cpython-f3dd32950b1ee88f06fdd2a14b18bcae9551905e.tar.gz cpython-f3dd32950b1ee88f06fdd2a14b18bcae9551905e.tar.bz2 |
merge 3.5
-rw-r--r-- | Modules/_ctypes/ctypes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h index 8a1df9a..b4a9b78 100644 --- a/Modules/_ctypes/ctypes.h +++ b/Modules/_ctypes/ctypes.h @@ -34,6 +34,7 @@ union value { #ifdef HAVE_LONG_LONG PY_LONG_LONG ll; #endif + long double D; }; /* @@ -305,6 +306,7 @@ struct tagPyCArgObject { #ifdef HAVE_LONG_LONG PY_LONG_LONG q; #endif + long double D; double d; float f; void *p; |