diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-06 23:44:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-06 23:44:03 (GMT) |
commit | 9fc57a384825530635ef5ec093a31d864ea14f7c (patch) | |
tree | b081652318026bc437ddbbebff9ad2e59da5f454 /Objects | |
parent | bccacd19fa7b56dcf2fbfab15992b6b94ab6666b (diff) | |
download | cpython-9fc57a384825530635ef5ec093a31d864ea14f7c.zip cpython-9fc57a384825530635ef5ec093a31d864ea14f7c.tar.gz cpython-9fc57a384825530635ef5ec093a31d864ea14f7c.tar.bz2 |
bpo-35081: Add pycore_fileutils.h (GH-10371)
Move Py_BUILD_CORE code from Include/fileutils.h to a new
Include/internal/pycore_fileutils.h file.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 3692da6..5338781 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -40,6 +40,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define PY_SSIZE_T_CLEAN #include "Python.h" +#include "pycore_fileutils.h" #include "pycore_state.h" #include "ucnhash.h" #include "bytes_methods.h" |