diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/fileobject.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h index aefeffe..a3670c2 100644 --- a/Include/fileobject.h +++ b/Include/fileobject.h @@ -23,6 +23,11 @@ extern DL_IMPORT(int) PyFile_SoftSpace(PyObject *, int); extern DL_IMPORT(int) PyFile_WriteString(char *, PyObject *); extern DL_IMPORT(int) PyObject_AsFileDescriptor(PyObject *); +/* The default encoding used by the platform file system APIs + If non-NULL, this is different than the default encoding for strings +*/ +extern DL_IMPORT(const char *) Py_FileSystemDefaultEncoding; + #ifdef __cplusplus } #endif |