summaryrefslogtreecommitdiff
path: root/Include/code.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-10-15 12:04:23 +0000
committerVictor Stinner <victor.stinner@haypocalc.com>2010-10-15 12:04:23 +0000
commita47a00d4de1dba7e27eb086e9843d0e1592663ef (patch)
tree37168e66ffd361e7028543812b26de7e7da46017 /Include/code.h
parent9add3cda9de8882b78ac036ab30a3ed068ec1a73 (diff)
downloadcpython-a47a00d4de1dba7e27eb086e9843d0e1592663ef.tar.gz
Use locale encoding if Py_FileSystemDefaultEncoding is not set
* PyUnicode_EncodeFSDefault(), PyUnicode_DecodeFSDefaultAndSize() and PyUnicode_DecodeFSDefault() use the locale encoding instead of UTF-8 if Py_FileSystemDefaultEncoding is NULL * redecode_filenames() functions and _Py_code_object_list (issue #9630) are no more needed: remove them
Diffstat (limited to 'Include/code.h')
-rw-r--r--Include/code.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/Include/code.h b/Include/code.h
index bdbfaba28c..11ecc9562c 100644
--- a/Include/code.h
+++ b/Include/code.h
@@ -72,7 +72,7 @@ PyAPI_DATA(PyTypeObject) PyCode_Type;
PyAPI_FUNC(PyCodeObject *) PyCode_New(
int, int, int, int, int, PyObject *, PyObject *,
PyObject *, PyObject *, PyObject *, PyObject *,
- PyObject *, PyObject *, int, PyObject *);
+ PyObject *, PyObject *, int, PyObject *);
/* same as struct above */
/* Creates a new empty code object with the specified source location. */
@@ -99,13 +99,6 @@ PyAPI_FUNC(int) _PyCode_CheckLineNumber(PyCodeObject* co,
PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts,
PyObject *names, PyObject *lineno_obj);
-/* List of weak references to all code objects. The list is used by
- initfsencoding() to redecode code filenames at startup if the filesystem
- encoding changes. At initfsencoding() exit, the list is set to NULL and it
- is no more used. */
-
-extern PyObject *_Py_code_object_list;
-
#ifdef __cplusplus
}
#endif