aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-05 16:27:08 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-05 16:27:08 -0700
commit63604032af6a0c0e869d8783f850e2418306a605 (patch)
treec09e4d520147d354621e94226c2746716cae47f2 /Modules
parentCloses #20366: Build full text search support into SQLite on Windows (diff)
parentremove long double from ctypes value union (diff)
downloadcpython-63604032af6a0c0e869d8783f850e2418306a605.tar.gz
cpython-63604032af6a0c0e869d8783f850e2418306a605.tar.bz2
cpython-63604032af6a0c0e869d8783f850e2418306a605.zip
merge 3.5
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/ctypes.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h
index b4a9b78e2fa..8a1df9aa22b 100644
--- a/Modules/_ctypes/ctypes.h
+++ b/Modules/_ctypes/ctypes.h
@@ -34,7 +34,6 @@ union value {
#ifdef HAVE_LONG_LONG
PY_LONG_LONG ll;
#endif
- long double D;
};
/*
@@ -306,7 +305,6 @@ struct tagPyCArgObject {
#ifdef HAVE_LONG_LONG
PY_LONG_LONG q;
#endif
- long double D;
double d;
float f;
void *p;