summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2017-12-15 07:48:12 (GMT)
committerGitHub <noreply@github.com>2017-12-15 07:48:12 (GMT)
commite425bd75177ffb7f098bdb0618b4a5ba3211fe52 (patch)
tree459f866641039b9111acff53ed3a0aaecce8ffd6 /Modules
parentf74ef458ab1f502e4e60bd1502ac1dc0d2cb3847 (diff)
downloadcpython-e425bd75177ffb7f098bdb0618b4a5ba3211fe52.zip
cpython-e425bd75177ffb7f098bdb0618b4a5ba3211fe52.tar.gz
cpython-e425bd75177ffb7f098bdb0618b4a5ba3211fe52.tar.bz2
move pygetopt.h to internal (closes bpo-32264) (#4830)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 339a0f5..6b602cf 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -3,6 +3,7 @@
#include "Python.h"
#include "osdefs.h"
#include "internal/import.h"
+#include "internal/pygetopt.h"
#include "internal/pystate.h"
#include <locale.h>
@@ -27,8 +28,6 @@
#define PYTHONHOMEHELP "<prefix>/lib/pythonX.X"
#endif
-#include "pygetopt.h"
-
#define COPYRIGHT \
"Type \"help\", \"copyright\", \"credits\" or \"license\" " \
"for more information."