Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c5ad54 commit fc2d8d6Copy full SHA for fc2d8d6
1 file changed
Python/import.c
@@ -1763,14 +1763,14 @@ import_find_and_load(PyThreadState *tstate, PyObject *abs_name)
1763
}
1764
1765
if (PyDTrace_IMPORT_FIND_LOAD_START_ENABLED())
1766
- PyDTrace_IMPORT_FIND_LOAD_START((char *)PyUnicode_AsUTF8(abs_name));
+ PyDTrace_IMPORT_FIND_LOAD_START(PyUnicode_AsUTF8(abs_name));
1767
1768
mod = _PyObject_CallMethodIdObjArgs(interp->importlib,
1769
&PyId__find_and_load, abs_name,
1770
interp->import_func, NULL);
1771
1772
if (PyDTrace_IMPORT_FIND_LOAD_DONE_ENABLED())
1773
- PyDTrace_IMPORT_FIND_LOAD_DONE((char *)PyUnicode_AsUTF8(abs_name),
+ PyDTrace_IMPORT_FIND_LOAD_DONE(PyUnicode_AsUTF8(abs_name),
1774
mod != NULL);
1775
1776
if (import_time) {
0 commit comments