diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-02-16 07:34:30 +0800 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-02-16 00:34:30 +0100 |
commit | 72e81d00eee685cfe33aaddf2aa9feef2d07591f (patch) | |
tree | 5c18a8a4d4a7877971f7a39841148dfa84cfdd6a /Python/bltinmodule.c | |
parent | bpo-29521 update Misc/ACKS (#106) (diff) | |
download | cpython-72e81d00eee685cfe33aaddf2aa9feef2d07591f.tar.gz cpython-72e81d00eee685cfe33aaddf2aa9feef2d07591f.tar.bz2 cpython-72e81d00eee685cfe33aaddf2aa9feef2d07591f.zip |
bpo-29556: Remove unused #include <langinfo.h> (#98)
bltinmodule.c: Added in b744ba1 and no longer necessary since d64e8a7
posixmodule.c: Added in d1cd4d4 and no longer necessary since efb00c0
pythonrun.c: Added in 73d538b and no longer necessary since d600951
sysmodule.c: Added in 5467d4c and no longer necessary since a2c17c5
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 763c2a2bb8e..63f19986760 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -11,10 +11,6 @@ #include <ctype.h> -#ifdef HAVE_LANGINFO_H -#include <langinfo.h> /* CODESET */ -#endif - /* The default encoding used by the platform file system APIs Can remain NULL for all platforms that don't have such a concept |