summaryrefslogtreecommitdiffstats
path: root/Modules/_decimal
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-10-15 07:46:29 (GMT)
committerGitHub <noreply@github.com>2021-10-15 07:46:29 (GMT)
commit8e5de40f90476249e9a2e5ef135143b5c6a0b512 (patch)
tree4a4442049bd006be2760d8456c4bb6837f5d1db8 /Modules/_decimal
parent9ce9cfe595d64e3081e69de7296042cc54bccf18 (diff)
downloadcpython-8e5de40f90476249e9a2e5ef135143b5c6a0b512.zip
cpython-8e5de40f90476249e9a2e5ef135143b5c6a0b512.tar.gz
cpython-8e5de40f90476249e9a2e5ef135143b5c6a0b512.tar.bz2
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
Move classobject.h, context.h, genobject.h and longintrepr.h header files from Include/ to Include/cpython/. Remove redundant "#ifndef Py_LIMITED_API" in context.h. Remove explicit #include "longintrepr.h" in C files. It's not needed, Python.h already includes it.
Diffstat (limited to 'Modules/_decimal')
-rw-r--r--Modules/_decimal/_decimal.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c
index dd876f2..237edd5 100644
--- a/Modules/_decimal/_decimal.c
+++ b/Modules/_decimal/_decimal.c
@@ -28,7 +28,6 @@
#include <Python.h>
#include "pycore_pystate.h" // _PyThreadState_GET()
-#include "longintrepr.h"
#include "complexobject.h"
#include "mpdecimal.h"