mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)
Move almost all private functions of Include/cpython/fileutils.h to the internal C API Include/internal/pycore_fileutils.h. Only keep _Py_fopen_obj() in Include/cpython/fileutils.h, since it's used by _testcapi which must not use the internal C API. Move EncodeLocaleEx() and DecodeLocaleEx() functions from _testcapi to _testinternalcapi, since the C API moved to the internal C API.
This commit is contained in:
parent
fc75bfb8be
commit
ea1a54506b
13 changed files with 289 additions and 258 deletions
|
@ -1,8 +1,9 @@
|
|||
#include "Python.h"
|
||||
#include "pycore_fileutils.h" // _Py_write_noraise()
|
||||
#include "pycore_gc.h" // PyGC_Head
|
||||
#include "pycore_hashtable.h" // _Py_hashtable_t
|
||||
#include "pycore_pymem.h" // _Py_tracemalloc_config
|
||||
#include "pycore_traceback.h"
|
||||
#include "pycore_hashtable.h"
|
||||
#include <pycore_frame.h>
|
||||
|
||||
#include <stdlib.h> // malloc()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue