diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-12-15 07:48:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 07:48:12 (GMT) |
commit | e425bd75177ffb7f098bdb0618b4a5ba3211fe52 (patch) | |
tree | 459f866641039b9111acff53ed3a0aaecce8ffd6 /Python | |
parent | f74ef458ab1f502e4e60bd1502ac1dc0d2cb3847 (diff) | |
download | cpython-e425bd75177ffb7f098bdb0618b4a5ba3211fe52.zip cpython-e425bd75177ffb7f098bdb0618b4a5ba3211fe52.tar.gz cpython-e425bd75177ffb7f098bdb0618b4a5ba3211fe52.tar.bz2 |
move pygetopt.h to internal (closes bpo-32264) (#4830)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getopt.c b/Python/getopt.c index de32ad4..e8d7e52 100644 --- a/Python/getopt.c +++ b/Python/getopt.c @@ -31,7 +31,7 @@ #include <stdio.h> #include <string.h> #include <wchar.h> -#include <pygetopt.h> +#include "internal/pygetopt.h" #ifdef __cplusplus extern "C" { |