Pending Removal in Python 3.15¶
- The bundled copy of - libmpdecimal.
- PyImport_ImportModuleNoBlock(): use- PyImport_ImportModule()instead.
- PyWeakref_GET_OBJECT(): use- PyWeakref_GetRef()instead.
- PyWeakref_GetObject(): use- PyWeakref_GetRef()instead.
- Py_UNICODE_WIDEtype: use- wchar_tinstead.
- Py_UNICODEtype: use- wchar_tinstead.
- Python initialization functions: - PySys_ResetWarnOptions(): clear- sys.warnoptionsand- warnings.filtersinstead.
- Py_GetExecPrefix(): get- sys.exec_prefixinstead.
- Py_GetPath(): get- sys.pathinstead.
- Py_GetPrefix(): get- sys.prefixinstead.
- Py_GetProgramFullPath(): get- sys.executableinstead.
- Py_GetProgramName(): get- sys.executableinstead.
- Py_GetPythonHome(): get- PyConfig.homeor the- PYTHONHOMEenvironment variable instead.