Home
last modified time | relevance | path

Searched refs:_Py_fopen_obj (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Include/cpython/
Dfileutils.h101 PyAPI_FUNC(FILE*) _Py_fopen_obj(
/third_party/python/Modules/
Dmain.c317 FILE *fp = _Py_fopen_obj(filename, "rb"); in pymain_run_file_obj()
411 FILE *fp = _Py_fopen_obj(startup, "r"); in pymain_run_startup()
D_testcapimodule.c4434 fp = _Py_fopen_obj(filename, "wb"); in pymarshal_write_long_to_file()
4460 fp = _Py_fopen_obj(filename, "wb"); in pymarshal_write_object_to_file()
4485 fp = _Py_fopen_obj(filename, "rb"); in pymarshal_read_short_from_file()
4510 fp = _Py_fopen_obj(filename, "rb"); in pymarshal_read_long_from_file()
4536 fp = _Py_fopen_obj(filename, "rb"); in pymarshal_read_last_object_from_file()
4560 fp = _Py_fopen_obj(filename, "rb"); in pymarshal_read_object_from_file()
D_ssl.c4144 f = _Py_fopen_obj(filepath, "rb"); in _ssl__SSLContext_load_dh_params()
/third_party/python/Modules/_ssl/
Ddebughelpers.c196 fp = _Py_fopen_obj(arg, "a" PY_STDIOTEXTMODE); in _PySSLContext_set_keylog_filename()
/third_party/python/Python/
Dpythonrun.c435 pyc_fp = _Py_fopen_obj(filename, "rb"); in _PyRun_SimpleFileObject()
Derrors.c1792 FILE *fp = _Py_fopen_obj(filename, "r" PY_STDIOTEXTMODE); in _PyErr_ProgramDecodedTextObject()
Dfileutils.c1623 _Py_fopen_obj(PyObject *path, const char *mode) in _Py_fopen_obj() function
Dimport.c2039 fp = _Py_fopen_obj(path, "r"); in _imp_create_dynamic_impl()
/third_party/python/Misc/NEWS.d/
D3.10.0a4.rst964 Use :c:func:`_Py_wfopen` or :c:func:`_Py_fopen_obj` instead. Patch by Victor
D3.10.0a1.rst708 Fix refleak in _Py_fopen_obj() when PySys_Audit() fails